Commit e678d90f by guojuxing

自定义页面顶部导航

parent 26b673ef
...@@ -70,6 +70,18 @@ public class AppletPageDetailVO implements Serializable{ ...@@ -70,6 +70,18 @@ public class AppletPageDetailVO implements Serializable{
*/ */
private Long crowdWidgetId; private Long crowdWidgetId;
/**
* 自定义页面专属 导航颜色,#ffffff
*/
private String guideTopColor;
/**
* 自定义页面专属 标题颜色1:黑色 2:白色
*/
private Integer titleColor;
public Integer getPageId() { public Integer getPageId() {
return pageId; return pageId;
} }
...@@ -172,6 +184,24 @@ public class AppletPageDetailVO implements Serializable{ ...@@ -172,6 +184,24 @@ public class AppletPageDetailVO implements Serializable{
return this; return this;
} }
public String getGuideTopColor() {
return guideTopColor;
}
public AppletPageDetailVO setGuideTopColor(String guideTopColor) {
this.guideTopColor = guideTopColor;
return this;
}
public Integer getTitleColor() {
return titleColor;
}
public AppletPageDetailVO setTitleColor(Integer titleColor) {
this.titleColor = titleColor;
return this;
}
@Override @Override
public String toString() { public String toString() {
return "AppletPageDetailVO{" + return "AppletPageDetailVO{" +
...@@ -187,6 +217,8 @@ public class AppletPageDetailVO implements Serializable{ ...@@ -187,6 +217,8 @@ public class AppletPageDetailVO implements Serializable{
", setting='" + setting + '\'' + ", setting='" + setting + '\'' +
", componentStr='" + componentStr + '\'' + ", componentStr='" + componentStr + '\'' +
", crowdWidgetId=" + crowdWidgetId + ", crowdWidgetId=" + crowdWidgetId +
", guideTopColor='" + guideTopColor + '\'' +
", titleColor=" + titleColor +
'}'; '}';
} }
} }
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