Blame view

ServiceAdministerMappingMapper.xml 905 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.ServiceAdministerMappingMapper">
涂亚平 committed
4 5

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

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

</mapper>