Commit 09bd7ca5 by zhiwj

提交门店

parent 0d20953e
......@@ -642,14 +642,10 @@ public class StoreOpenApiServiceImpl implements StoreOpenApiService {
if (CollectionUtils.isNotEmpty(list)) {
for (StoreDTO storeDTO : list) {
if (storeDTO.getRegionId().intValue() == regionId.intValue()) {
storeIds.append(storeDTO.getStoreId()).append(",");
storeIds.append(storeDTO.getStoreId()).append(" ");
}
}
}
// 去掉最后的逗号
if (storeIds.length() > 0) {
storeIds.deleteCharAt(storeIds.length() - 1);
}
return storeIds;
}
......
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