model : 修改intervalHour字段类型为DOUBLE

dev_2.1.0
xueqingkun 1 year ago
parent 401af349f7
commit cc83d08a25

@ -56,7 +56,7 @@ public class ConfigDrug implements Serializable {
/** /**
*() *()
*/ */
private String intervalHour; private Double intervalHour;
/** /**
* / * /
*/ */

@ -13,7 +13,7 @@
<result property="dose" column="dose" jdbcType="BIGINT"/> <result property="dose" column="dose" jdbcType="BIGINT"/>
<result property="unit" column="unit" jdbcType="VARCHAR"/> <result property="unit" column="unit" jdbcType="VARCHAR"/>
<result property="intervalDay" column="interval_day" jdbcType="VARCHAR"/> <result property="intervalDay" column="interval_day" jdbcType="VARCHAR"/>
<result property="intervalHour" column="interval_hour" jdbcType="VARCHAR"/> <result property="intervalHour" column="interval_hour" jdbcType="DOUBLE"/>
<result property="dosageForm" column="dosage_form" jdbcType="VARCHAR"/> <result property="dosageForm" column="dosage_form" jdbcType="VARCHAR"/>
<result property="skinTestFlag" column="skin_test_flag" jdbcType="VARCHAR"/> <result property="skinTestFlag" column="skin_test_flag" jdbcType="VARCHAR"/>
<result property="costType" column="cost_type" jdbcType="INTEGER"/> <result property="costType" column="cost_type" jdbcType="INTEGER"/>

@ -40,3 +40,7 @@ alter table vp_rasa_model_info
alter table vp_rasa_model_info alter table vp_rasa_model_info
modify run_log longtext null comment '运行日志'; modify run_log longtext null comment '运行日志';
-- 修改药物表字段类型
alter table vp_config_drug
modify interval_hour double null comment '用药间隔(小时)';

Loading…
Cancel
Save