Commit e0cc51d5 by guojuxing

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

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