Commit d3396317 by guojuxing

装修页面-附近门店:添加快捷导航开关

parent 182818c8
...@@ -12,6 +12,10 @@ public class CustomStoreVO { ...@@ -12,6 +12,10 @@ public class CustomStoreVO {
private String appid; private String appid;
private Integer appType; private Integer appType;
private Integer storeWidgetId; private Integer storeWidgetId;
/**
* 快捷导航开关 1:开启 0:关闭
*/
private Integer quickGuideSwitch;
public Integer getCustomStoreId() { public Integer getCustomStoreId() {
return customStoreId; return customStoreId;
...@@ -53,6 +57,15 @@ public class CustomStoreVO { ...@@ -53,6 +57,15 @@ public class CustomStoreVO {
this.storeWidgetId = storeWidgetId; this.storeWidgetId = storeWidgetId;
} }
public Integer getQuickGuideSwitch() {
return quickGuideSwitch;
}
public CustomStoreVO setQuickGuideSwitch(Integer quickGuideSwitch) {
this.quickGuideSwitch = quickGuideSwitch;
return this;
}
@Override @Override
public String toString() { public String toString() {
return "CustomStoreVO{" + return "CustomStoreVO{" +
...@@ -61,6 +74,7 @@ public class CustomStoreVO { ...@@ -61,6 +74,7 @@ public class CustomStoreVO {
", appid='" + appid + '\'' + ", appid='" + appid + '\'' +
", appType=" + appType + ", appType=" + appType +
", storeWidgetId=" + storeWidgetId + ", storeWidgetId=" + storeWidgetId +
", quickGuideSwitch=" + quickGuideSwitch +
'}'; '}';
} }
} }
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