EsmOfferChannelMapper.xml 1.2 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ydtech.modules.esm.dao.EsmOfferChannelMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.esm.model.EsmOfferChannel">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="title" column="title" jdbcType="VARCHAR"/>
  9. <result property="image" column="image" jdbcType="VARCHAR"/>
  10. <result property="category" column="category" jdbcType="TINYINT"/>
  11. <result property="url" column="url" jdbcType="VARCHAR"/>
  12. <result property="isOpen" column="is_open" jdbcType="TINYINT"/>
  13. <result property="username" column="username" jdbcType="VARCHAR"/>
  14. <result property="password" column="password" jdbcType="VARCHAR"/>
  15. <result property="configInfo" column="config_info" jdbcType="VARCHAR"/>
  16. <result property="agreementId" column="agreement_id" jdbcType="VARCHAR"/>
  17. </resultMap>
  18. <sql id="Base_Column_List">
  19. id
  20. ,title,image,
  21. category,url,is_open,
  22. username,password,config_info,
  23. agreement_id
  24. </sql>
  25. </mapper>