店铺信息

运营模式
restaurant 餐饮版 先下单后支付
munchies   快餐版(先支付后下单)
是否开启桌位费 0否1是
桌位费
就餐模式  堂食 dine-in  外带 take-out
This commit is contained in:
2024-09-13 10:45:03 +08:00
parent 6a9f084df1
commit 724d5fc2da
4 changed files with 66 additions and 4 deletions

View File

@@ -17,6 +17,11 @@ public class ShopInfoController {
@Autowired
ShopInfoService shopInfoService;
@GetMapping("/queryShopInfo")
public Result queryShopInfo(@RequestParam Integer shopId){
return shopInfoService.queryShopInfo(shopId);
}
@GetMapping("queryShopArea")
public Result queryShopArea(@RequestHeader("token") String token,
@RequestHeader("loginName") String loginName,