ZpglRcxxProjectMapper.xml 1006 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?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="cn.timer.api.dao.zpgl.ZpglRcxxProjectMapper">

	<!-- 可根据自己的需求,是否要使用 -->
    <resultMap type="cn.timer.api.bean.zpgl.ZpglRcxxProject" id="zpglRcxxProjectMap">
        <result property="id" column="id"/>
        <result property="zpglRcxxId" column="zpgl_rcxx_id"/>
        <result property="projectName" column="project_name"/>
        <result property="job" column="job"/>
12
        <result property="projectDescribe" column="project_describe"/>
13 14
        <result property="duty" column="duty"/>
        <result property="location" column="location"/>
15 16
        <result property="startTime" column="start_time"/>
        <result property="endTime" column="end_time"/>
17
        <result property="deleteFlag" column="delete_flag"/>
18
        <result property="createTime" column="create_time"/>
19 20 21
    </resultMap>

</mapper>