增加动态表单自动排版配置界面的保存回显逻辑
This commit is contained in:
parent
60c6caafee
commit
98c051c1de
@ -49,7 +49,7 @@ public class CardTemplateUseAreaDTO {
|
||||
@ApiModelProperty(name = "templateAreaFontCenter", value = "文字位置(快照)")
|
||||
private String templateAreaFontCenter;
|
||||
@ApiModelProperty(name = "templateAreaFontSize", value = "字体大小(快照)")
|
||||
private String templateAreaFontSize;
|
||||
private Integer templateAreaFontSize;
|
||||
@ApiModelProperty(name = "templateAreaFontBold", value = "文字加粗(快照)")
|
||||
private String templateAreaFontBold;
|
||||
@ApiModelProperty(name = "templateAreaFontFamily", value = "文字字体(快照)")
|
||||
@ -215,11 +215,11 @@ public class CardTemplateUseAreaDTO {
|
||||
this.templateAreaFontCenter = templateAreaFontCenter;
|
||||
}
|
||||
|
||||
public String getTemplateAreaFontSize() {
|
||||
return templateAreaFontSize == null ? "" : templateAreaFontSize.trim();
|
||||
public Integer getTemplateAreaFontSize() {
|
||||
return templateAreaFontSize == null ? 0: templateAreaFontSize;
|
||||
}
|
||||
|
||||
public void setTemplateAreaFontSize(String templateAreaFontSize) {
|
||||
public void setTemplateAreaFontSize(Integer templateAreaFontSize) {
|
||||
this.templateAreaFontSize = templateAreaFontSize;
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user