GarOrderEvaluateMapper.xml 1.44 KB
<?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.trash.garbage.mapper.GarOrderEvaluateMapper">

    <resultMap id="BaseResultMap" type="com.trash.garbage.pojo.domain.GarOrderEvaluate">
            <id property="garEvaluateId" column="gar_evaluate_id" jdbcType="VARCHAR"/>
            <result property="garEvaluateContent" column="gar_evaluate_content" jdbcType="VARCHAR"/>
            <result property="garOrderId" column="gar_order_id" jdbcType="VARCHAR"/>
            <result property="garEvaluateScore" column="gar_evaluate_score" jdbcType="TINYINT"/>
            <result property="garUpdateBy" column="gar_update_by" jdbcType="VARCHAR"/>
            <result property="garCreateBy" column="gar_create_by" jdbcType="VARCHAR"/>
            <result property="garUpdateTime" column="gar_update_time" jdbcType="TIMESTAMP"/>
            <result property="garCreateTime" column="gar_create_time" jdbcType="TIMESTAMP"/>
            <result property="garRemark" column="gar_remark" jdbcType="VARCHAR"/>
            <result property="garCompanyId" column="gar_company_id" jdbcType="VARCHAR"/>
    </resultMap>

    <sql id="Base_Column_List">
        gar_evaluate_id,gar_evaluate_content,gar_evaluate_score,
        gar_update_by,gar_create_by,gar_update_time,
        gar_create_time,gar_remark,gar_order_id,gar_company_id
    </sql>
</mapper>