| | |
| | | if (isNotBlank(comPropertyVO.getAccount())) { |
| | | AdministratorsUserVO administratorsUserVO=new AdministratorsUserVO(); |
| | | administratorsUserVO.setType(3); |
| | | if (comPropertyVO.getCommunityId().equals(10172)){ |
| | | administratorsUserVO.setType(20); |
| | | } |
| | | administratorsUserVO.setAccount(comPropertyVO.getAccount()); |
| | | administratorsUserVO.setPassword(comPropertyVO.getPassword()); |
| | | administratorsUserVO.setRoleId(comPropertyVO.getRoleId()); |
| | |
| | | comPropertyVO.setPassword(null); |
| | | return R.ok(comPropertyVO); |
| | | } |
| | | |
| | | @Override |
| | | public R noticeList(Integer page, Integer size, Long propertyId) { |
| | | return R.ok(comPropertyDao.noticeList(new Page(page,size),propertyId)); |
| | | } |
| | | } |