Commit 59f742c4 authored by 李腾威's avatar 李腾威

任务 4155

parent 866767c1
......@@ -36,4 +36,7 @@ public class ShiftChangeDto extends BaseDto {
@ApiModelProperty(value = "操作人名称")
private String recUserName;
@ApiModelProperty(value = "日常工作")
private String dutyWork;
}
......@@ -43,4 +43,10 @@ public class ShiftChange extends BaseEntity {
*/
@TableField("remark")
private String remark;
/**
* 日常工作
*/
@TableField("duty_work")
private String dutyWork;
}
......@@ -1915,7 +1915,15 @@
ALTER TABLE jc_alert_submitted MODIFY COLUMN sender varchar(50) DEFAULT NULL COMMENT '发送人';
</sql>
</changeSet>
<changeSet author="ltw" id="2021-10-26-1">
<preConditions onFail="MARK_RAN">
<tableExists tableName="jc_shift_change"/>
</preConditions>
<comment>119值班交接班填报新增工作日常字段</comment>
<sql>
ALTER TABLE `jc_shift_change` ADD duty_work varchar(4000) NULL COMMENT '日常工作';
</sql>
</changeSet>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment