feat(预置信息内容添加修改字段信息):
This commit is contained in:
parent
2d8812212c
commit
21a17709ff
|
@ -53,8 +53,8 @@ public class PresetContent {
|
|||
/**
|
||||
* 字体样式
|
||||
*/
|
||||
@TableField(value = "font_style")
|
||||
private String fontStyle;
|
||||
@TableField(value = "font_family")
|
||||
private String fontFamily;
|
||||
|
||||
/**
|
||||
* 字体大小
|
||||
|
@ -92,6 +92,12 @@ public class PresetContent {
|
|||
@TableField(value = "play_time")
|
||||
private Integer playTime;
|
||||
|
||||
@TableField(value = "horizontal_center")
|
||||
private Boolean horizontalCenter;
|
||||
|
||||
@TableField(value = "vertical_center")
|
||||
private Boolean verticalCenter;
|
||||
|
||||
/**
|
||||
* 当前预置类型 1:内置模版 0:预发布信息
|
||||
*/
|
||||
|
|
|
@ -56,8 +56,8 @@ public class PresetContentDTO {
|
|||
/**
|
||||
* 字体样式
|
||||
*/
|
||||
@TableField(value = "font_style")
|
||||
private String fontStyle;
|
||||
@TableField(value = "font_family")
|
||||
private String fontFamily;
|
||||
|
||||
/**
|
||||
* 字体大小
|
||||
|
@ -130,4 +130,16 @@ public class PresetContentDTO {
|
|||
*/
|
||||
@TableField(value = "update_by")
|
||||
private Integer updateBy;
|
||||
|
||||
/**
|
||||
* 是否水平居中
|
||||
*/
|
||||
@TableField(value = "horizontal_center")
|
||||
private Boolean horizontalCenter;
|
||||
|
||||
/**
|
||||
* 是否垂直居中
|
||||
*/
|
||||
@TableField(value = "vertical_center")
|
||||
private Boolean verticalCenter;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue