预约段 接口 层级
This commit is contained in:
@@ -59,7 +59,7 @@ public class BkContactListController {
|
||||
|
||||
|
||||
/**
|
||||
* 预约端-台桌:查询台桌列表
|
||||
* 预约端-台桌:查询预约单列表
|
||||
*/
|
||||
// @SaAdminCheckPermission(value = "bk:bkOrder:bookings", name = "预约端-预约单:列表")
|
||||
@GetMapping("/bkOrder/bookings")
|
||||
|
||||
@@ -14,9 +14,9 @@ public class BkTableVO {
|
||||
|
||||
private String areaName;
|
||||
|
||||
private List<BkTableVO.tableVO> tables;
|
||||
private List<BkTableVO.TableVO> tables;
|
||||
|
||||
record tableVO(
|
||||
record TableVO(
|
||||
String tableName, List<BkOrder> bkOrders
|
||||
) {
|
||||
}
|
||||
|
||||
@@ -48,9 +48,9 @@
|
||||
<resultMap id="BkTableVOResultMap" type="com.czg.account.vo.BkTableVO">
|
||||
<result property="areaId" column="area_id"/>
|
||||
<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"/>
|
||||
<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="callUsername" column="call_username"/>
|
||||
<result property="bookingPhone" column="booking_phone"/>
|
||||
|
||||
Reference in New Issue
Block a user