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); return lpkCustomerService.customerListPage(pq);
} }
@ApiOperation("客户个人信息") @ApiOperation("客户个人信息")
@GetMapping("/customerInfo") @GetMapping("/customerInfo/{sid}")
public ResultBean customerInfo(String sid){ public ResultBean customerInfo(@PathVariable("sid") String sid){
return lpkCustomerService.getCustomerInfo(sid); return lpkCustomerService.getCustomerInfo(sid);
} }
@Test @Test

View File

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