Commit aaf076b2 by guojuxing

积分服务调整:详情接口VO添加人群字段

parent dfedef5f
......@@ -50,6 +50,11 @@ public class AppletPageDetailVO implements Serializable{
*/
private String componentStr;
/**
* 人群筛选器ID(积分服务页面专用
*/
private Long crowdWidgetId;
public Integer getPageId() {
return pageId;
}
......@@ -116,6 +121,15 @@ public class AppletPageDetailVO implements Serializable{
return this;
}
public Long getCrowdWidgetId() {
return crowdWidgetId;
}
public AppletPageDetailVO setCrowdWidgetId(Long crowdWidgetId) {
this.crowdWidgetId = crowdWidgetId;
return this;
}
@Override
public String toString() {
return "AppletPageDetailVO{" +
......@@ -127,6 +141,7 @@ public class AppletPageDetailVO implements Serializable{
", backgroundColor='" + backgroundColor + '\'' +
", setting='" + setting + '\'' +
", componentStr='" + componentStr + '\'' +
", crowdWidgetId=" + crowdWidgetId +
'}';
}
}
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