liujie
2025-06-02 cec9ec95b1a835602c80fafbaa071b8815bdbc44
springcloud_k8s_panzhihuazhihuishequ/service_westcommittee/src/main/java/com/panzhihua/westcommittee/service/impl/ComplaintServiceImpl.java
@@ -64,7 +64,7 @@
 */
@Slf4j
@Service
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
@RequiredArgsConstructor(onConstructor_ ={@Lazy})
public class ComplaintServiceImpl extends ServiceImpl<ComplaintMapper, Complaint> implements IComplaintService {
    private final ISystemUserService systemUserService;
    private final IComplaintFlowService complaintFlowService;
@@ -1899,8 +1899,9 @@
    }
    @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();
@@ -1909,12 +1910,12 @@
            complaint.setAssignPersonId(userId);
            complaint.setFirstStatus(1);
            complaint.setAssignStatus(1);
             baseMapper.updateById(complaint);
            complaint.setRemark(remark);
            baseMapper.updateById(complaint);
        }else {
            throw new ServiceException("你没有分配权限");
        }
    }
}