This commit is contained in:
dimengzhe
2024-01-18 16:23:50 +08:00
parent 1393e4b1e6
commit c2727281b1
2 changed files with 6 additions and 4 deletions

View File

@@ -46,8 +46,8 @@ public class LpkCustomerRest {
return lpkCustomerService.customerListPage(pq);
}
@ApiOperation("客户个人信息")
@GetMapping("/customerInfo")
public ResultBean customerInfo(String sid){
@GetMapping("/customerInfo/{sid}")
public ResultBean customerInfo(@PathVariable("sid") String sid){
return lpkCustomerService.getCustomerInfo(sid);
}
@Test

View File

@@ -70,10 +70,12 @@ public class SaTokenConfigure implements WebMvcConfigurer {
.excludePathPatterns("/lpkgoods/vegeCellarList")
.excludePathPatterns("/customerstore/getStoreBySid/**")
.excludePathPatterns("/lpkgiftcard/bindAllCard")
.excludePathPatterns("/lpkcustomer/customerInfo")
.excludePathPatterns("/lpkcustomer/customerInfo/**")
//2024-01-18
.excludePathPatterns("/lpkcustomer/getCustomerInfo/**")
.excludePathPatterns("/lpkcustomer/modifyUserNickName")
.excludePathPatterns("/lpkcustomer/modifyHeadImage");
.excludePathPatterns("/lpkcustomer/modifyHeadImage")
.excludePathPatterns("/upload/**")
;
}
}