SysChannelCostRelationMapper.xml 769 B

12345678910111213141516171819
  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.admin.dao.SysChannelCostRelationMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.admin.model.po.SysChannelCostRelation">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="channelId" column="channel_id" jdbcType="BIGINT"/>
  9. <result property="agreementId" column="agreement_id" jdbcType="BIGINT"/>
  10. <result property="costId" column="cost_id" jdbcType="BIGINT"/>
  11. </resultMap>
  12. <sql id="Base_Column_List">
  13. id,channel_id,agreement_id,
  14. cost_id
  15. </sql>
  16. </mapper>