Commit e0cc51d5 by guojuxing

资源组-门店选择器资源添加字段

parent 8682f9dd
...@@ -19,6 +19,8 @@ public class StoreResourceInfo implements Serializable{ ...@@ -19,6 +19,8 @@ public class StoreResourceInfo implements Serializable{
*/ */
private Integer type; private Integer type;
private Integer storeResourceId;
public List<Integer> getStoreIdList() { public List<Integer> getStoreIdList() {
return storeIdList; return storeIdList;
} }
...@@ -37,11 +39,21 @@ public class StoreResourceInfo implements Serializable{ ...@@ -37,11 +39,21 @@ public class StoreResourceInfo implements Serializable{
return this; return this;
} }
public Integer getStoreResourceId() {
return storeResourceId;
}
public StoreResourceInfo setStoreResourceId(Integer storeResourceId) {
this.storeResourceId = storeResourceId;
return this;
}
@Override @Override
public String toString() { public String toString() {
return "StoreResourceInfo{" + return "StoreResourceInfo{" +
"storeIdList=" + storeIdList + "storeIdList=" + storeIdList +
", type=" + type + ", type=" + type +
", storeResourceId=" + storeResourceId +
'}'; '}';
} }
} }
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