Commit f61360d7 authored by 杨钧's avatar 杨钧

客服绑卡接口新增

parent b210b512
...@@ -8,7 +8,7 @@ import lombok.ToString; ...@@ -8,7 +8,7 @@ import lombok.ToString;
import java.util.List; import java.util.List;
/** /**
* @author Jony * @author yangjun
* @Date 2020/3/9 11:20 * @Date 2020/3/9 11:20
* @Desc * @Desc
* @Update * @Update
......
...@@ -144,7 +144,7 @@ public class CardServiceImpl implements ICardService { ...@@ -144,7 +144,7 @@ public class CardServiceImpl implements ICardService {
@Override @Override
public JsonResult modifyReservePhone(ModifyReservePhone modifyReservePhone) { public JsonResult modifyReservePhone(ModifyReservePhone modifyReservePhone) {
if (Objects.isNull(modifyReservePhone)) { if (Objects.isNull(modifyReservePhone)) {
log.error("请求参数 unBindCardModel 为空"); log.error("请求参数 modifyReservePhone 为空");
return JsonResult.buildErrorStateResult(ErrorCodeEnum.PARAM_ERROR.getMessage(), ErrorCodeEnum.PARAM_ERROR.getCode()); return JsonResult.buildErrorStateResult(ErrorCodeEnum.PARAM_ERROR.getMessage(), ErrorCodeEnum.PARAM_ERROR.getCode());
} }
...@@ -152,8 +152,8 @@ public class CardServiceImpl implements ICardService { ...@@ -152,8 +152,8 @@ public class CardServiceImpl implements ICardService {
if (Objects.isNull(modifyReservePhone.getBankId()) if (Objects.isNull(modifyReservePhone.getBankId())
|| Objects.isNull(modifyReservePhone.getUserId()) || Objects.isNull(modifyReservePhone.getUserId())
|| StringUtils.isBlank(modifyReservePhone.getPhoneNo())) { || StringUtils.isBlank(modifyReservePhone.getPhoneNo())) {
log.error("请求参数 bindId,userId,phoneNo 都不能为空"); log.error("请求参数 bankId,userId,phoneNo 都不能为空");
return JsonResult.buildErrorStateResult("bindId,userId,phoneNo 不能为空", ErrorCodeEnum.RETURN_ERROR.getCode()); return JsonResult.buildErrorStateResult("bankId,userId,phoneNo 不能为空", ErrorCodeEnum.RETURN_ERROR.getCode());
} }
//发起xyqb查询 //发起xyqb查询
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment