Commit 15f5d790 by guojuxing

小程序页面装修vo字段匹配

parent 81025197
......@@ -37,6 +37,21 @@ public class AppletPageDetailVO implements Serializable{
private Integer quickGuideSwitch;
/**
* 小程序标题
*/
private String appletTitle;
/**
* 背景颜色 0 灰色 1 白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置)2:背景图片(自定义页面有)
*/
private Integer backgroundType;
/**
* 自定义页面有。页面背景是图片的时候有值
*/
private String backgroundImage;
/**
* 背景颜色 灰色 白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置)
*/
private String backgroundColor;
......@@ -130,6 +145,33 @@ public class AppletPageDetailVO implements Serializable{
return this;
}
public String getAppletTitle() {
return appletTitle;
}
public AppletPageDetailVO setAppletTitle(String appletTitle) {
this.appletTitle = appletTitle;
return this;
}
public Integer getBackgroundType() {
return backgroundType;
}
public AppletPageDetailVO setBackgroundType(Integer backgroundType) {
this.backgroundType = backgroundType;
return this;
}
public String getBackgroundImage() {
return backgroundImage;
}
public AppletPageDetailVO setBackgroundImage(String backgroundImage) {
this.backgroundImage = backgroundImage;
return this;
}
@Override
public String toString() {
return "AppletPageDetailVO{" +
......@@ -138,6 +180,9 @@ public class AppletPageDetailVO implements Serializable{
", title='" + title + '\'' +
", entryCondition=" + entryCondition +
", quickGuideSwitch=" + quickGuideSwitch +
", appletTitle='" + appletTitle + '\'' +
", backgroundType=" + backgroundType +
", backgroundImage='" + backgroundImage + '\'' +
", backgroundColor='" + backgroundColor + '\'' +
", setting='" + setting + '\'' +
", componentStr='" + componentStr + '\'' +
......
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