| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.ydtech.modules.esm.dao.EsmOfferChannelMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.esm.model.EsmOfferChannel">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="title" column="title" jdbcType="VARCHAR"/>
- <result property="image" column="image" jdbcType="VARCHAR"/>
- <result property="category" column="category" jdbcType="TINYINT"/>
- <result property="url" column="url" jdbcType="VARCHAR"/>
- <result property="isOpen" column="is_open" jdbcType="TINYINT"/>
- <result property="username" column="username" jdbcType="VARCHAR"/>
- <result property="password" column="password" jdbcType="VARCHAR"/>
- <result property="configInfo" column="config_info" jdbcType="VARCHAR"/>
- <result property="agreementId" column="agreement_id" jdbcType="VARCHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id
- ,title,image,
- category,url,is_open,
- username,password,config_info,
- agreement_id
- </sql>
- </mapper>
|