| 1234567891011121314151617 |
- <?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.admin.dao.SysPartnerTimeMapper">
- <resultMap type="com.ydtech.modules.admin.model.SysPartnerTime" id="SysPartnerTimeMap">
- <result property="id" column="id" jdbcType="INTEGER"/>
- <result property="userId" column="user_id" jdbcType="VARCHAR"/>
- <result property="userName" column="user_name" jdbcType="VARCHAR"/>
- <result property="oldProportional" column="old_proportional" jdbcType="VARCHAR"/>
- <result property="newProportional" column="new_proportional" jdbcType="VARCHAR"/>
- <result property="createTime" column="create_time" jdbcType="VARCHAR"/>
- <result property="type" column="type" jdbcType="INTEGER"/>
- </resultMap>
- </mapper>
|