Commit e44a0314 authored by 赵啸非's avatar 赵啸非

提交配置校验

parent e68cba12
......@@ -395,8 +395,14 @@ public class SiteServiceImpl extends AbstractCRUDCacheServiceImpl<SiteDao, SiteE
UserPdu userPdu = new UserPdu();
userPdu.setPage(1);
userPdu.setSize(-1);
Rest<RespData<List<UserPdu>>> list = userFeign.list(userPdu);
userService.updateUserList(list.getData().getData());
Rest<RespData<List<UserPdu>>> userRest = userFeign.list(userPdu);
if(YesNoEnum.YES.getValue()==userRest.getCode()){
if(!ObjectUtils.isEmpty(userRest.getData())
&&!ObjectUtils.isEmpty(userRest.getData().getData())) {
userService.updateUserList(userRest.getData().getData());
}
}
}
super.removeAfter(ids, context, result);
}
......
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