MarketingAwardsMapper.xml 1.1 KB

123456789101112131415161718192021222324
  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.qs.mp.admin.mapper.MarketingAwardsMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.qs.mp.admin.domain.MarketingAwards">
  6. <id column="id" property="id" />
  7. <result column="marketing_id" property="marketingId" />
  8. <result column="name" property="name" />
  9. <result column="sort" property="sort" />
  10. <result column="quantity" property="quantity" />
  11. <result column="memo" property="memo" />
  12. <result column="hit_rate" property="hitRate" />
  13. <result column="created_time" property="createdTime" />
  14. <result column="updated_time" property="updatedTime" />
  15. <result column="is_deleted" property="isDeleted" />
  16. </resultMap>
  17. <!-- 通用查询结果列 -->
  18. <sql id="Base_Column_List">
  19. id, marketing_id, name, sort, quantity, memo, hit_rate, created_time, updated_time, is_deleted
  20. </sql>
  21. </mapper>