修改工作动态备用字段1注释,改为摘要
This commit is contained in:
parent
e1edb302f5
commit
e6b17da32a
|
@ -36,7 +36,7 @@ public class WorkDynamicsDTO implements Serializable {
|
||||||
private Long updater;
|
private Long updater;
|
||||||
@ApiModelProperty(value = "修改时间")
|
@ApiModelProperty(value = "修改时间")
|
||||||
private Date updateDate;
|
private Date updateDate;
|
||||||
@ApiModelProperty(value = "备用字段1")
|
@ApiModelProperty(value = "摘要")
|
||||||
private String note1;
|
private String note1;
|
||||||
@ApiModelProperty(value = "备用字段2")
|
@ApiModelProperty(value = "备用字段2")
|
||||||
private String note2;
|
private String note2;
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class WorkDynamicsEntity {
|
||||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||||
private Date updateDate;
|
private Date updateDate;
|
||||||
/**
|
/**
|
||||||
* 备用字段1
|
* 摘要
|
||||||
*/
|
*/
|
||||||
private String note1;
|
private String note1;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class WorkDynamicsExcel {
|
||||||
private Long updater;
|
private Long updater;
|
||||||
@ExcelProperty(value = "修改时间", index = 8)
|
@ExcelProperty(value = "修改时间", index = 8)
|
||||||
private Date updateDate;
|
private Date updateDate;
|
||||||
@ExcelProperty(value = "备用字段1", index = 9)
|
@ExcelProperty(value = "摘要", index = 9)
|
||||||
private String note1;
|
private String note1;
|
||||||
@ExcelProperty(value = "备用字段2", index = 10)
|
@ExcelProperty(value = "备用字段2", index = 10)
|
||||||
private String note2;
|
private String note2;
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
ALTER TABLE `share_platform`.`tb_work_dynamics`
|
||||||
|
MODIFY COLUMN `note1` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '摘要' AFTER `update_date`;
|
Loading…
Reference in New Issue