model:vp_config_treatment_plan表添加disposalPlanId字段

dev_2.0.0
xueqingkun 1 year ago
parent 1a9abe1494
commit d010af373d

@ -24,6 +24,8 @@ public class ConfigTreatmentPlan implements Serializable {
@TableId
private String id;
@ApiModelProperty("处置计划id")
private String disposalPlanId;
@ApiModelProperty("处置计划")
private String disposalPlan;

@ -6,6 +6,7 @@
<resultMap id="BaseResultMap" type="com.supervision.model.ConfigTreatmentPlan">
<id property="id" column="id" jdbcType="VARCHAR"/>
<result property="disposalPlanId" column="disposal_plan_id" jdbcType="VARCHAR"/>
<result property="disposalPlan" column="disposal_plan" jdbcType="VARCHAR"/>
<result property="disposalMethod" column="disposal_method" jdbcType="INTEGER"/>
<result property="firstMeasures" column="first_measures" jdbcType="VARCHAR"/>
@ -20,7 +21,7 @@
</resultMap>
<sql id="Base_Column_List">
id,disposal_plan,disposal_method,
id,disposal_plan_id,disposal_plan,disposal_method,
first_measures,second_measures,recommended_medication,
description,create_user_id,create_time,
update_user_id,update_time

Loading…
Cancel
Save