<?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>
|