1: 修改表 vp_disease_treatment_plan的relationType字段类型为Integer

dev_3.1.0
xueqingkun
parent 91e0e18d58
commit 0863a35bea

@ -40,7 +40,7 @@ public class DiseaseTreatmentPlan implements Serializable {
private String treatmentPlanId;
@Schema(description = "关系类型 0:关联疾病 1:关联病历")
private String relationType;
private Integer relationType;
/**
* ID

@ -8,7 +8,7 @@
<id property="id" column="id" jdbcType="VARCHAR"/>
<result property="diseaseId" column="disease_id" jdbcType="VARCHAR"/>
<result property="treatmentPlanId" column="treatment_plan_id" jdbcType="VARCHAR"/>
<result property="relationType" column="relation_type" jdbcType="VARCHAR"/>
<result property="relationType" column="relation_type" jdbcType="INTEGER"/>
<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"/>

Loading…
Cancel
Save