| | |
| | | public R detailPopulation(Long populationId) { |
| | | ComMngPopulationDO comMngPopulationDO = populationDAO.selectById(populationId); |
| | | if (ObjectUtils.isEmpty(comMngPopulationDO)) { |
| | | return R.fail(); |
| | | return R.fail("用户信息不存在"); |
| | | } |
| | | ComMngPopulationVO comMngPopulationVO = new ComMngPopulationVO(); |
| | | BeanUtils.copyProperties(comMngPopulationDO, comMngPopulationVO); |
| | |
| | | return R.fail(); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 查询实有人口电子档信息 |
| | | * @param populationId 实有人口id |
| | | * @return 实有人口电子档信息 |
| | | */ |
| | | @Override |
| | | public R electronicArchivesPopulation(Long populationId){ |
| | | ComMngPopulationDO comMngPopulationDO = populationDAO.selectById(populationId); |
| | | if (ObjectUtils.isEmpty(comMngPopulationDO)) { |
| | | return R.fail("用户信息不存在"); |
| | | } |
| | | //查询当前用户电子档信息 |
| | | if(!StringUtils.isEmpty(comMngPopulationDO.getCardNo())){ |
| | | UserElectronicFileVO electronicFileVO = populationDAO.getSysUserElectronicFile(comMngPopulationDO.getCardNo()); |
| | | if(electronicFileVO != null){ |
| | | return R.ok(electronicFileVO); |
| | | } |
| | | } |
| | | return R.ok(); |
| | | } |
| | | } |