修复台桌金额展示有误

This commit is contained in:
2024-09-26 09:38:04 +08:00
parent 55eb77f824
commit 4acff0f20d

View File

@@ -119,9 +119,9 @@ public class TbShopTable implements Serializable {
@Column(name = "`product_num`")
private Integer productNum;
@Column(name = "`total_amount`")
private Integer totalAmount;
private BigDecimal totalAmount;
@Column(name = "`real_amount`")
private Integer realAmount;
private BigDecimal realAmount;
@Column(name = "`use_num`")
private Integer useNum;