Commit 581ef588 authored by 李腾威's avatar 李腾威

修改BUG

parent 79d913fa
......@@ -149,12 +149,12 @@ public class FireTeamServiceImpl extends BaseService<FireTeamDto, FireTeam, Fire
}
public List<FireTeamDto> queryFireTeamForList(Boolean isDelete, Map map) {
// 权限处理
String bizOrgCode = map.containsKey("bizOrgCode") ? map.get("bizOrgCode").toString() : null;
if (map == null || map.size() < 1) {
return fireTeamMapper.listFireTeamDto(isDelete, null, null, null, null, null,bizOrgCode);
return fireTeamMapper.listFireTeamDto(isDelete, null, null, null, null, null,null);
}
// 权限处理
String bizOrgCode = map.containsKey("bizOrgCode") ? map.get("bizOrgCode").toString() : null;
String nodeId = map.containsKey("nodeId") ? map.get("nodeId").toString() : null;
String nodeType = map.containsKey("nodeType") ? map.get("nodeType").toString() : null;
String name = map.containsKey("name") ? map.get("name").toString() : null;
......
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