Commit 428e0372 by guojuxing

装修页面添加:快捷导航字段

parent 1e692437
...@@ -34,6 +34,11 @@ public class AppletCustomPageDTO implements Serializable{ ...@@ -34,6 +34,11 @@ public class AppletCustomPageDTO implements Serializable{
private Integer entryCondition; private Integer entryCondition;
/** /**
* 快捷导航开关 1:开启 0:关闭 默认开启
*/
private Integer quickGuideSwitch;
/**
* 背景颜色 1:灰色 2:白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置) * 背景颜色 1:灰色 2:白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置)
*/ */
private String backgroundColor; private String backgroundColor;
...@@ -181,4 +186,13 @@ public class AppletCustomPageDTO implements Serializable{ ...@@ -181,4 +186,13 @@ public class AppletCustomPageDTO implements Serializable{
this.backgroundColor = backgroundColor; this.backgroundColor = backgroundColor;
return this; return this;
} }
public Integer getQuickGuideSwitch() {
return quickGuideSwitch;
}
public AppletCustomPageDTO setQuickGuideSwitch(Integer quickGuideSwitch) {
this.quickGuideSwitch = quickGuideSwitch;
return this;
}
} }
...@@ -26,6 +26,11 @@ public class AppletPageDetailVO implements Serializable{ ...@@ -26,6 +26,11 @@ public class AppletPageDetailVO implements Serializable{
private Integer entryCondition; private Integer entryCondition;
/** /**
* 快捷导航开关 1:开启 0:关闭 默认开启
*/
private Integer quickGuideSwitch;
/**
* 背景颜色 灰色 白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置) * 背景颜色 灰色 白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置)
*/ */
private String backgroundColor; private String backgroundColor;
...@@ -95,4 +100,13 @@ public class AppletPageDetailVO implements Serializable{ ...@@ -95,4 +100,13 @@ public class AppletPageDetailVO implements Serializable{
this.backgroundColor = backgroundColor; this.backgroundColor = backgroundColor;
return this; return this;
} }
public Integer getQuickGuideSwitch() {
return quickGuideSwitch;
}
public AppletPageDetailVO setQuickGuideSwitch(Integer quickGuideSwitch) {
this.quickGuideSwitch = quickGuideSwitch;
return this;
}
} }
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