Commit 63ce9967 by 陶光胜

门店品牌变更

parent 7504c1f0
......@@ -17,6 +17,7 @@ public class StoreColumnSet implements Serializable {
private Set<Integer> erpStatus = new HashSet<>();
private Set<Integer> storeGroupId = new HashSet<>();
private Set<Integer> region = new HashSet<>();
private Set<Integer> brandId = new HashSet<>();
public Set<Integer> getStoreType() {
return storeType;
......@@ -57,4 +58,12 @@ public class StoreColumnSet implements Serializable {
public void setRegion(Set<Integer> region) {
this.region = region;
}
public Set<Integer> getBrandId() {
return brandId;
}
public void setBrandId(Set<Integer> brandId) {
this.brandId = brandId;
}
}
......@@ -249,6 +249,9 @@ public class StoreWidgetApiServiceImpl implements StoreWidgetApiService {
if(storeDTO.getStoreType() != null){
storeColumnSet.getStoreType().add(storeDTO.getStoreType());
}
if(CollectionUtils.isNotEmpty(storeDTO.getStoreBrandIdList())){
storeColumnSet.getBrandId().addAll(storeDTO.getStoreBrandIdList());
}
}
}
if(pageNum == 1 && page.getPages() > 1){
......
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