SysGoodsPriceMapper.xml 864 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.yonge.cooleshow.biz.dal.mapper.SysGoodsPriceMapper">
  4. <!-- 表字段 -->
  5. <sql id="baseColumns">
  6. t.id_ AS id
  7. , t.goods_type_ AS goodsType
  8. , t.sale_price_ AS salePrice
  9. , t.original_price_ AS originalPrice
  10. , t.describe_ AS `describe`
  11. , t.duration_ AS duration
  12. , t.goods_img_ AS goodsImg
  13. , t.update_by_ AS updateBy
  14. , t.update_time_ AS updateTime
  15. , t.create_time_ AS createTime
  16. </sql>
  17. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.entity.SysGoodsPrice">
  18. SELECT
  19. <include refid="baseColumns" />
  20. FROM sys_goods_price t
  21. </select>
  22. </mapper>