model:1. vp_process_medical 添加字段

dev_2.0.0
xueqingkun 1 year ago
parent 1a650a4df5
commit ccdc5cdfb2

@ -21,6 +21,11 @@ public class ProcessMedical implements Serializable {
@TableId @TableId
private String id; private String id;
/**
* id
*/
private String processId;
/** /**
* ID * ID
*/ */
@ -41,21 +46,44 @@ public class ProcessMedical implements Serializable {
*/ */
private String patientSelfDesc; private String patientSelfDesc;
/**
*
*/
private String personalHistory;
/** /**
* *
*/ */
private String illnessHistory; private String illnessHistory;
/**
* 0 1
*/
private String allergyHistoryFlag;
/** /**
* *
*/ */
private String allergyHistory; private String allergyHistory;
/**
* 0 1
*/
private String previousHistoryFlag;
/** /**
* *
*/ */
private String previousHistory; private String previousHistory;
/**
* 0 1
*/
private String familyHistoryFlag;
/** /**
* *
*/ */
@ -66,6 +94,16 @@ public class ProcessMedical implements Serializable {
*/ */
private String marriageChildHistory; private String marriageChildHistory;
/**
* 0 1
*/
private String operationHistoryFlag;
/**
*
*/
private String operationHistory;
/** /**
* ID * ID
*/ */

@ -5,27 +5,36 @@
<mapper namespace="com.supervision.mapper.ProcessMedicalMapper"> <mapper namespace="com.supervision.mapper.ProcessMedicalMapper">
<resultMap id="BaseResultMap" type="com.supervision.model.ProcessMedical"> <resultMap id="BaseResultMap" type="com.supervision.model.ProcessMedical">
<id property="id" column="id" jdbcType="VARCHAR"/> <id property="id" column="id" jdbcType="VARCHAR"/>
<result property="medicalRecId" column="medical_rec_id" jdbcType="VARCHAR"/> <result property="medicalRecId" column="medical_rec_id" jdbcType="VARCHAR"/>
<result property="patientId" column="patient_id" jdbcType="VARCHAR"/> <result property="processId" column="process_id" jdbcType="VARCHAR"/>
<result property="diseaseId" column="disease_id" jdbcType="VARCHAR"/> <result property="patientId" column="patient_id" jdbcType="VARCHAR"/>
<result property="patientSelfDesc" column="patient_self_desc" jdbcType="VARCHAR"/> <result property="diseaseId" column="disease_id" jdbcType="VARCHAR"/>
<result property="illnessHistory" column="illness_history" jdbcType="VARCHAR"/> <result property="patientSelfDesc" column="patient_self_desc" jdbcType="VARCHAR"/>
<result property="allergyHistory" column="allergy_history" jdbcType="VARCHAR"/> <result property="illnessHistory" column="illness_history" jdbcType="VARCHAR"/>
<result property="previousHistory" column="previous_history" jdbcType="VARCHAR"/> <result property="allergyHistoryFlag" column="allergy_history_flag" jdbcType="VARCHAR"/>
<result property="familyHistory" column="family_history" jdbcType="VARCHAR"/> <result property="personalHistory" column="personal_history" jdbcType="VARCHAR"/>
<result property="marriageChildHistory" column="marriage_child_history" jdbcType="VARCHAR"/> <result property="allergyHistory" column="allergy_history" jdbcType="VARCHAR"/>
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/> <result property="previousHistory" column="previous_history" jdbcType="VARCHAR"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> <result property="previousHistoryFlag" column="previous_history_flag" jdbcType="INTEGER"/>
<result property="updateUserId" column="update_user_id" jdbcType="VARCHAR"/> <result property="familyHistory" column="family_history" jdbcType="VARCHAR"/>
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> <result property="familyHistoryFlag" column="family_history_flag" jdbcType="INTEGER"/>
<result property="marriageChildHistory" column="marriage_child_history" jdbcType="VARCHAR"/>
<result property="operationHistoryFlag" column="operation_history_flag" jdbcType="VARCHAR"/>
<result property="operationHistory" column="operation_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> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,medical_rec_id,patient_id, id,medical_rec_id,process_id,
disease_id,patient_self_desc,illness_history, patient_id,disease_id,patient_self_desc,
allergy_history,previous_history,family_history, illness_history,allergy_history_flag,personal_history,
marriage_child_history,create_user_id,create_time, allergy_history,previous_history,previous_history_flag,
update_user_id,update_time family_history,family_history_flag,marriage_child_history,
operation_history_flag,operation_history,create_user_id,
create_time,update_user_id,update_time
</sql> </sql>
</mapper> </mapper>

Loading…
Cancel
Save