TInsuranceOperateMapper.xml 1.15 KB
Newer Older
李灿灿's avatar
李灿灿 committed
1 2 3 4
<?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">
5
<mapper namespace="com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TInsuranceOperateMapper">
李灿灿's avatar
李灿灿 committed
6 7 8 9 10

    <resultMap id="BaseResultMap" type="com.yifu.cloud.plus.v1.yifu.insurances.entity.TInsuranceOperate">
            <id property="id" column="ID" jdbcType="VARCHAR"/>
            <result property="insuranceDetailId" column="INSURANCE_DETAIL_ID" jdbcType="VARCHAR"/>
            <result property="operateDesc" column="OPERATE_DESC" jdbcType="VARCHAR"/>
11
			<result property="remark" column="REMARK" jdbcType="VARCHAR"/>
李灿灿's avatar
李灿灿 committed
12
			<result property="displayFlag" column="DISPLAY_FLAG" jdbcType="TINYINT"/>
李灿灿's avatar
李灿灿 committed
13 14 15 16 17 18
            <result property="createBy" column="CREATE_BY" jdbcType="VARCHAR"/>
            <result property="createName" column="CREATE_NAME" jdbcType="VARCHAR"/>
            <result property="createTime" column="CREATE_TIME" jdbcType="TIMESTAMP"/>
    </resultMap>

    <sql id="Base_Column_List">
19
        ID,INSURANCE_DETAIL_ID,OPERATE_DESC,REMARK,
李灿灿's avatar
李灿灿 committed
20 21 22
        CREATE_BY,CREATE_NAME,CREATE_TIME
    </sql>
</mapper>