|
|
@ -314,7 +314,7 @@ public class CustomerStaffServiceImpl extends BaseServiceImpl<CustomerStaffDao, |
|
|
|
customerStaffFormDTO.setCustomerId(fromDTO.getCustomerId()); |
|
|
|
customerStaffFormDTO.setMobile(fromDTO.getMobile()); |
|
|
|
CustomerStaffDTO customerStaffDTO = baseDao.selectListCustomerStaffInfo(customerStaffFormDTO); |
|
|
|
if (!fromDTO.getStaffId().equals(customerStaffDTO.getUserId())) { |
|
|
|
if (null != customerStaffDTO && !fromDTO.getStaffId().equals(customerStaffDTO.getUserId())){ |
|
|
|
return new Result<CustomerStaffDTO>().error(EpmetErrorCode.MOBILE_USED.getCode(), EpmetErrorCode.MOBILE_USED.getMsg()); |
|
|
|
} |
|
|
|
|
|
|
@ -413,9 +413,9 @@ public class CustomerStaffServiceImpl extends BaseServiceImpl<CustomerStaffDao, |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return Result<List < CommonStaffInfoResultDTO>> |
|
|
|
* @Description 通过userId列表查询未被禁用的用户信息 |
|
|
|
* @Param CommonUserIdListFormDTO :: getUserIdList |
|
|
|
* @return Result<List<CommonStaffInfoResultDTO>> |
|
|
|
* @Author wangc |
|
|
|
* @Date 2020.04.24 15:44 |
|
|
|
**/ |
|
|
|