Blame view

ServiceDictMapper.xml 804 Bytes
涂亚平 committed
1 2
<?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">
涂亚平 committed
3
<mapper namespace="com.subsidy.mapper.ServiceDictMapper">
涂亚平 committed
4 5

    <!-- 通用查询映射结果 -->
涂亚平 committed
6
    <resultMap id="BaseResultMap" type="com.subsidy.model.ServiceDictDO">
涂亚平 committed
7 8 9 10
        <id column="id" property="id" />
        <result column="create_date" property="createDate" />
        <result column="update_date" property="updateDate" />
        <result column="delete_date" property="deleteDate" />
涂亚平 committed
11
        <result column="service_name" property="serviceName" />
涂亚平 committed
12 13 14 15 16 17 18
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
涂亚平 committed
19
        id, service_name
涂亚平 committed
20 21 22
    </sql>

</mapper>