Commit e678d90f by guojuxing

自定义页面顶部导航

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