|
@@ -80,6 +80,14 @@ public class JyUserServiceImpl extends ServiceImpl<IJyUserMapper, JyUser> implem
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
|
+ public ResultData getByRyNo(JyUserParamVo param) {
|
|
|
|
+ if(StrUtil.isEmpty(param.getRyNo())){
|
|
|
|
+ throw new BusinessException(ErrorCode.PARAM_REQUIRED.code(), "ryNo不能为空");
|
|
|
|
+ }
|
|
|
|
+ return jmgaClient.post(JmgaConstant.API_GET_UCENTER_USER, param);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
public ResultData updateStatus(DelJyUserParamVo param) {
|
|
public ResultData updateStatus(DelJyUserParamVo param) {
|
|
if(Objects.isNull(param)){
|
|
if(Objects.isNull(param)){
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED.code(), "status不能为空");
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED.code(), "status不能为空");
|