预约段 接口 层级

This commit is contained in:
2025-11-27 18:21:19 +08:00
parent 5f9a06f61f
commit 661a13c29d
3 changed files with 5 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ public class BkContactListController {
/** /**
* 预约端-台桌:查询台桌列表 * 预约端-台桌:查询预约单列表
*/ */
// @SaAdminCheckPermission(value = "bk:bkOrder:bookings", name = "预约端-预约单:列表") // @SaAdminCheckPermission(value = "bk:bkOrder:bookings", name = "预约端-预约单:列表")
@GetMapping("/bkOrder/bookings") @GetMapping("/bkOrder/bookings")

View File

@@ -14,9 +14,9 @@ public class BkTableVO {
private String areaName; private String areaName;
private List<BkTableVO.tableVO> tables; private List<BkTableVO.TableVO> tables;
record tableVO( record TableVO(
String tableName, List<BkOrder> bkOrders String tableName, List<BkOrder> bkOrders
) { ) {
} }

View File

@@ -48,9 +48,9 @@
<resultMap id="BkTableVOResultMap" type="com.czg.account.vo.BkTableVO"> <resultMap id="BkTableVOResultMap" type="com.czg.account.vo.BkTableVO">
<result property="areaId" column="area_id"/> <result property="areaId" column="area_id"/>
<result property="areaName" column="area_name"/> <result property="areaName" column="area_name"/>
<collection property="tables" ofType="com.czg.account.vo.BkTableVO$tableVO"> <collection property="tables" ofType="com.czg.account.vo.BkTableVO$TableVO" javaType="java.util.List">
<result property="tableName" column="table_name"/> <result property="tableName" column="table_name"/>
<collection property="bkOrders" ofType="com.czg.account.vo.BkTableVO$BkOrder"> <collection property="bkOrders" ofType="com.czg.account.vo.BkTableVO$BkOrder" javaType="java.util.List">
<result property="callPhone" column="call_phone"/> <result property="callPhone" column="call_phone"/>
<result property="callUsername" column="call_username"/> <result property="callUsername" column="call_username"/>
<result property="bookingPhone" column="booking_phone"/> <result property="bookingPhone" column="booking_phone"/>