台桌添加订单字段

This commit is contained in:
gong
2026-03-28 14:09:34 +08:00
parent 1ae849d24c
commit 7d6086311a
2 changed files with 10 additions and 1 deletions

View File

@@ -21,7 +21,16 @@ import java.util.Date;
public class ShopTableVO extends ShopTable {
private Long orderId;
private Long userId;
/**
* 订单金额
*/
private BigDecimal orderAmount;
/**
* 人数
*/
private Integer personNum;
/**
* 订单创建时间
*/
private Date orderCreateTime;
}