This commit is contained in:
wangjinlei
2023-11-01 16:50:56 +08:00
parent 5a15ba417c
commit eff309f8cb
12 changed files with 90 additions and 7 deletions

View File

@@ -87,6 +87,11 @@ public class ExpressOrder {
*/
@TableField(exist = false)
private String printString;
/**
* 商品列表
*/
@TableField(exist = false)
private List<ShopProduct> products;
/**
* 快递单号
*/

View File

@@ -151,6 +151,11 @@ public class ShopProduct implements Serializable {
*/
@TableField(exist = false)
private ArrayList<String> bookids;
/**
* 实体书list
*/
@TableField(exist = false)
private List<BookEntity> books;
/**
* 多个电子书Id ArrayList<Map<String,String>>
@@ -167,4 +172,14 @@ public class ShopProduct implements Serializable {
@TableField(exist = false)
private List<String> shoproudLabels;
/**
* 数量
*/
@TableField(exist = false)
private Integer quantity;
/**
* 属于的订单,特殊情况下启用
*/
@TableField(exist = false)
private String orderSn;
}