Commit 4e8052b4 by 徐高华

test

parent 1c12f96f
......@@ -149,7 +149,7 @@ public class WxEnterpriseController extends WebBaseController {
StaffDTO dto = this.staffApiService.selectById(staffId) ;
String eid = dto.getDefaultGicEid() ;
for(EnterpriseDetailDTO item : list) {
if(eid.equals(item.getEnterpriseId())) {
if(null != item.getEnterpriseId() && eid.equals(item.getEnterpriseId())) {
item.setDefaultFlag(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