Commit 6238c85d by 徐高华

test

parent 7e2f1426
...@@ -112,6 +112,9 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService { ...@@ -112,6 +112,9 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService {
public void stopHaoban(String enterpriseId) { public void stopHaoban(String enterpriseId) {
List<TabHaobanWxEnterpriseRelated> list = this.wxEnterpriseRelatedMapper.listByEnterpriseId(enterpriseId) ; List<TabHaobanWxEnterpriseRelated> list = this.wxEnterpriseRelatedMapper.listByEnterpriseId(enterpriseId) ;
logger.info("停用好办={},list={}",enterpriseId,JSON.toJSONString(list)); logger.info("停用好办={},list={}",enterpriseId,JSON.toJSONString(list));
if(CollectionUtils.isEmpty(list)){
return ;
}
List<String> wxEnterpriseIdList = new ArrayList<>(); List<String> wxEnterpriseIdList = new ArrayList<>();
for(TabHaobanWxEnterpriseRelated item : list) { for(TabHaobanWxEnterpriseRelated item : list) {
String wxEnterpriseId = item.getWxEnterpriseId() ; String wxEnterpriseId = item.getWxEnterpriseId() ;
......
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