Commit d3396317 by guojuxing

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

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