| | |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |
| | | public void assignComplain(LoginUserInfoVO loginUserInfo, Long complainId, Integer userId) { |
| | | public void assignComplain(LoginUserInfoVO loginUserInfo, Long complainId, Integer userId,String remark) { |
| | | IdentityInformation currentIdentityInformation = identityInformationService.getCurrentIdentityInformation(loginUserInfo); |
| | | if (currentIdentityInformation.getIdentity().equals(2)) { |
| | | SystemUser systemUser = currentIdentityInformation.getSystemUser(); |
| | |
| | | complaint.setAssignPersonId(userId); |
| | | complaint.setFirstStatus(1); |
| | | complaint.setAssignStatus(1); |
| | | complaint.setRemark(remark); |
| | | baseMapper.updateById(complaint); |
| | | }else { |
| | | throw new ServiceException("你没有分配权限"); |
| | | } |
| | | |
| | | } |
| | | |
| | | } |
| | | |