更改手机号校验code码,重构ec同步代码

This commit is contained in:
xiaodong.hu
2023-10-27 13:55:38 +08:00
parent 19993c9ce8
commit 5498832bd4
7 changed files with 157 additions and 75 deletions

View File

@@ -44,6 +44,6 @@ public class LineHighSeasController {
@GetMapping("/addCheckout")
@ApiOperation("线索手机号校验")
public ResponseResult addCheckout(@Param("partnerMobile")String partnerMobile) throws ApiException {
return ResponseResult.success(lineHighSeasService.addCheckout(partnerMobile));
return lineHighSeasService.addCheckout(partnerMobile);
}
}