| | |
| | | // 查询当前水库对应的市级编号和县区编号 |
| | | AttResBaseVO attResBaseVO = attResBaseService.getCityCountyCodeByResGuid(res_cd); |
| | | if (null!= attResBaseVO) { |
| | | |
| | | //如果是小型水库只发县级短信预警角色或者县级管理员 |
| | | if (attResBaseVO.getEngScal().equals("小(2)型") || attResBaseVO.getEngScal().equals("小(1)型")) { |
| | | // 通过编号查询对应的人员 |
| | | List<PersonVO> personListByResGuid = baseMapper.getCityCountyPersonListNewByResGuid(attResBaseVO.getCountyCode(), attResBaseVO.getCityCode(), ""); |
| | | personVOList.addAll(personListByResGuid); |
| | | return personVOList; |
| | | } |
| | | |
| | | // 通过编号查询对应的人员 |
| | | List<PersonVO> personListByResGuid = baseMapper.getCityCountyPersonListByResGuid(attResBaseVO.getCountyCode(), attResBaseVO.getCityCode(), ""); |
| | | personVOList.addAll(personListByResGuid); |