LymsPushMessagesMapper.xml 2.75 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
<?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.lyms.talkonlineweb.mapper.LymsPushMessagesMapper">

<resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsPushMessages">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="pid" column="pid" jdbcType="INTEGER"/>
<result property="pname" column="pname" jdbcType="VARCHAR"/>
<result property="hid" column="hid" jdbcType="INTEGER"/>
<result property="hname" column="hname" jdbcType="VARCHAR"/>
<result property="did" column="did" jdbcType="INTEGER"/>
<result property="dname" column="dname" jdbcType="VARCHAR"/>
<result property="dtid" column="dtid" jdbcType="INTEGER"/>
<result property="dtname" column="dtname" jdbcType="VARCHAR"/>
<result property="iid" column="iid" jdbcType="INTEGER"/>
<result property="iname" column="iname" jdbcType="VARCHAR"/>
<result property="ilid" column="ilid" jdbcType="INTEGER"/>
<result property="gzopenid" column="gzopenid" jdbcType="VARCHAR"/>
<result property="aid" column="aid" jdbcType="INTEGER"/>
<result property="atitle" column="atitle" jdbcType="VARCHAR"/>
<result property="acontent" column="acontent" jdbcType="VARCHAR"/>
<result property="articleType" column="article_type" jdbcType="INTEGER"/>
<result property="serialnumber" column="serialNumber" jdbcType="INTEGER"/>
<result property="weixTextOne" column="weix_text_one" jdbcType="VARCHAR"/>
<result property="weixTextTwo" column="weix_text_two" jdbcType="VARCHAR"/>
<result property="isweixinOne" column="isweixin_one" jdbcType="INTEGER"/>
<result property="isweixinTwo" column="isweixin_two" jdbcType="INTEGER"/>
<result property="pushTime" column="push_time" jdbcType="TIMESTAMP"/>
<result property="state" column="state" jdbcType="INTEGER"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="idno" column="remark" jdbcType="VARCHAR"/>
<result property="mobile" column="remark" jdbcType="VARCHAR"/>
<result property="createdTime" column="created_time" jdbcType="TIMESTAMP"/>
</resultMap>

<sql id="Base_Column_List">
id,pid,pname,
hid,hname,did,
dname,dtid,dtname,
iid,iname,ilid,
gzopenid,aid,atitle,
acontent,article_type,serialNumber,weix_text_one,
weix_text_two,isweixin_one,isweixin_two,
push_time,state,remark,idno,mobile,created_time
</sql>
</mapper>