啊鑫
5 天以前 9f7368ceb60b8f5c635cf455914f435d8d782a90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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.gs.xky.mapper.DingtalkMsgMapper">
 
    <resultMap id="BaseResultMap" type="com.gs.xky.entity.DingtalkMsg">
        <result property="releaseNo" column="RELEASE_NO"/>
        <result property="suppName" column="SUPP_NAME"/>
        <result property="createDate" column="CREATE_DATE"/>
        <result property="projectCodes" column="PROJECT_CODES"/>
        <result property="itemNo" column="ITEM_NO"/>
        <result property="fname" column="FNAME"/>
        <result property="fngHandle" column="FNG_HANDLE"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        RELEASE_NO,SUPP_NAME,CREATE_DATE,PROJECT_CODES,ITEM_NO,FNAME,
        FNG_HANDLE
    </sql>
</mapper>