2024-09-16 注册页申请流程

pull/379/head
zhp 2024-09-18 23:20:17 +08:00
parent 2dfd47e94e
commit 6c5a458185
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class CommonController extends BaseController
* @param phone
* @return
*/
@GetMapping("/getChannelBySign")
@GetMapping("/sendSms")
public AjaxResult getChannelBySign(@RequestParam("phone")String phone, HttpServletRequest request){
return commonService.sendSms(phone);
}

View File

@ -159,7 +159,7 @@ public class CustomerController extends BaseController
/**
* H5
*/
@PostMapping("saveCustomerInfo")
@PostMapping("/saveCustomerInfo")
public AjaxResult saveCustomerInfo(@RequestBody Customer customer, HttpServletRequest request){
return customerService.saveCustomerInfo(customer,request);
}