From 28cf328a098334b51a3e9d2d56f983fb8c862211 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 23 五月 2020 09:54:38 +0800 Subject: [PATCH] 足迹、收藏订单兼容新需求 --- fanli/src/main/java/com/yeshi/fanli/entity/taobao/TLJBuyGoods.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TLJBuyGoods.java b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TLJBuyGoods.java index 572d963..06e87f5 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TLJBuyGoods.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TLJBuyGoods.java @@ -22,6 +22,8 @@ @Id private String id; @Field + private String appKey; + @Field private String day; @Field private Date updateTime; @@ -31,6 +33,24 @@ private Integer totalHongBaoCount;// 鎬荤孩鍖呬釜鏁� @Field private Integer leftHongBaoCount;// 鍓╀綑绾㈠寘涓暟 + @Field + private Integer weight; + + public Integer getWeight() { + return weight; + } + + public void setWeight(Integer weight) { + this.weight = weight; + } + + public String getAppKey() { + return appKey; + } + + public void setAppKey(String appKey) { + this.appKey = appKey; + } public Integer getTotalHongBaoCount() { return totalHongBaoCount; -- Gitblit v1.8.0