添加获取最大折扣接口

This commit is contained in:
牛叉闪闪
2024-08-13 14:30:22 +08:00
parent c300f61def
commit d93bfd24a1
3 changed files with 30 additions and 2 deletions

View File

@@ -51,4 +51,14 @@ public class LoginContoller {
@RequestHeader("clientType") String clientType){
return loginService.getShopInfo(token);
}
@RequestMapping(value = "getStaffDiscount")
public Result getStaffDiscount(@RequestHeader("token") String token,
@RequestHeader("loginName") String loginName,
@RequestHeader("clientType") String clientType){
return loginService.getStaffDiscount(token);
}
}