feat(预置信息内容添加修改字段信息):

This commit is contained in:
fuhao 2024-09-10 16:37:44 +08:00
parent 2d8812212c
commit 21a17709ff
No known key found for this signature in database
2 changed files with 22 additions and 4 deletions

View File

@ -53,8 +53,8 @@ public class PresetContent {
/** /**
* 字体样式 * 字体样式
*/ */
@TableField(value = "font_style") @TableField(value = "font_family")
private String fontStyle; private String fontFamily;
/** /**
* 字体大小 * 字体大小
@ -92,6 +92,12 @@ public class PresetContent {
@TableField(value = "play_time") @TableField(value = "play_time")
private Integer playTime; private Integer playTime;
@TableField(value = "horizontal_center")
private Boolean horizontalCenter;
@TableField(value = "vertical_center")
private Boolean verticalCenter;
/** /**
* 当前预置类型 1内置模版 0预发布信息 * 当前预置类型 1内置模版 0预发布信息
*/ */

View File

@ -56,8 +56,8 @@ public class PresetContentDTO {
/** /**
* 字体样式 * 字体样式
*/ */
@TableField(value = "font_style") @TableField(value = "font_family")
private String fontStyle; private String fontFamily;
/** /**
* 字体大小 * 字体大小
@ -130,4 +130,16 @@ public class PresetContentDTO {
*/ */
@TableField(value = "update_by") @TableField(value = "update_by")
private Integer updateBy; private Integer updateBy;
/**
* 是否水平居中
*/
@TableField(value = "horizontal_center")
private Boolean horizontalCenter;
/**
* 是否垂直居中
*/
@TableField(value = "vertical_center")
private Boolean verticalCenter;
} }