Order实体类增加规格

This commit is contained in:
Xubx 2024-08-31 22:10:33 +08:00
parent 1b8734bfa8
commit 4990e5551a
1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,11 @@ public class Order extends Base {
/** /**
* 购买数量 * 购买数量
*/ */
private Integer nums; private Integer num;
/**
* 商品规格
*/
private String specs;
} }