Authored by jimi

增加

... ... @@ -177,10 +177,13 @@ public class WorkSystemSupport {
List<User> list = new ArrayList<User>();
for(String role:roles.split(",")){
list.addAll(userMapper.selectUsersByRole(role));
if (HandlerRole.DBA.equals(role)){
list.add(userMapper.selectByName("xiaoye.fan"));
}
}
list.addAll(userMapper.selectUsersByRole("other"));
// list.addAll(userMapper.selectUsersByRole("other"));
// //对fanxiaoye对特殊的处理(即是dba又是运维)
// list.add(userMapper.selectByName("xiaoye.fan"));
//
addPendingByUser(pendingJob,list,sendLeader);
}
... ...