This commit is contained in:
shuo.wang
2025-04-13 20:22:19 +08:00
parent 0d32d59e4c
commit 1c402aecb4

View File

@@ -129,7 +129,7 @@ public class MiniShopController {
@ApiOperation("给bot的门店信息") @ApiOperation("给bot的门店信息")
@GetMapping("/getShopNameAndCode") @GetMapping("/getShopNameAndCode")
public ResponseResult<ShopResponse> getShopNameAndCode(@RequestParam("shopId")Long shopId, @RequestParam("lineId")Long lineId) { public ResponseResult<ShopResponse> getShopNameAndCode(@RequestParam(name = "shopId",required = false)Long shopId, @RequestParam("lineId")Long lineId) {
return ResponseResult.success(shopService.getShopNameAndCode(shopId,lineId)); return ResponseResult.success(shopService.getShopNameAndCode(shopId,lineId));
} }