You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.8 KiB
XML
32 lines
1.8 KiB
XML
1 year ago
|
<?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.supervision.mapper.ProcessMedicalMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.supervision.model.ProcessMedical">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="medicalRecId" column="medical_rec_id" jdbcType="VARCHAR"/>
|
||
|
<result property="patientId" column="patient_id" jdbcType="VARCHAR"/>
|
||
|
<result property="diseaseId" column="disease_id" jdbcType="VARCHAR"/>
|
||
|
<result property="patientSelfDesc" column="patient_self_desc" jdbcType="VARCHAR"/>
|
||
|
<result property="illnessHistory" column="illness_history" jdbcType="VARCHAR"/>
|
||
|
<result property="allergyHistory" column="allergy_history" jdbcType="VARCHAR"/>
|
||
|
<result property="previousHistory" column="previous_history" jdbcType="VARCHAR"/>
|
||
|
<result property="familyHistory" column="family_history" jdbcType="VARCHAR"/>
|
||
|
<result property="marriageChildHistory" column="marriage_child_history" jdbcType="VARCHAR"/>
|
||
|
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateUserId" column="update_user_id" jdbcType="VARCHAR"/>
|
||
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,medical_rec_id,patient_id,
|
||
|
disease_id,patient_self_desc,illness_history,
|
||
|
allergy_history,previous_history,family_history,
|
||
|
marriage_child_history,create_user_id,create_time,
|
||
|
update_user_id,update_time
|
||
|
</sql>
|
||
|
</mapper>
|