LymsYyscRecordMapper.xml 1.99 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
<?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.LymsYyscRecordMapper">

<resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsYyscRecord">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="archId" column="arch_id" jdbcType="INTEGER"/>
<result property="formCode" column="form_code" jdbcType="VARCHAR"/>
<result property="formVersion" column="form_version" jdbcType="VARCHAR"/>
<result property="examineTime" column="examine_time" jdbcType="TIMESTAMP"/>
<result property="examineDoctor" column="examine_doctor" jdbcType="INTEGER"/>
<result property="examineHid" column="examine_hid" jdbcType="INTEGER"/>
<result property="examineDpid" column="examine_dpid" jdbcType="INTEGER"/>
<result property="sumScore" column="sum_score" jdbcType="INTEGER"/>
<result property="factorScore" column="factor_score" jdbcType="VARCHAR"/>
<result property="dealMeasure" column="deal_measure" jdbcType="VARCHAR"/>

<result property="uploadStatus" column="upload_status" jdbcType="INTEGER"/>
<result property="uploadTime" column="upload_time" jdbcType="TIMESTAMP"/>
<result property="printStatus" column="print_status" jdbcType="INTEGER"/>
<result property="printTime" column="print_time" jdbcType="TIMESTAMP"/>
<result property="printDoctor" column="print_doctor" jdbcType="INTEGER"/>

<result property="createdby" column="createdby" jdbcType="INTEGER"/>
<result property="createdtime" column="createdtime" jdbcType="TIMESTAMP"/>
<result property="updatedby" column="updatedby" jdbcType="INTEGER"/>
<result property="updatedtime" column="updatedtime" jdbcType="TIMESTAMP"/>
</resultMap>



</mapper>