预约 回填

This commit is contained in:
2025-11-27 18:41:52 +08:00
parent 92a12430ed
commit acbefe6ae6
2 changed files with 3 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ public class BkTableVO {
}
record BkOrder(
String callPhone, String callUsername, String bookingPhone, String bookingUsername
String callPhone, String callUsername, String bookingPhone, String bookingUsername, String bookingTime
) {
}
}

View File

@@ -49,12 +49,14 @@
<result property="areaId" column="area_id"/>
<result property="areaName" column="area_name"/>
<collection property="tables" ofType="com.czg.account.vo.BkTableVO$TableVO" javaType="java.util.List">
<result property="tableId" column="table_id"/>
<result property="tableName" column="table_name"/>
<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"/>
<result property="bookingUsername" column="booking_username"/>
<result property="bookingTime" column="booking_time"/>
</collection>
</collection>
</resultMap>