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/bus/user/vip/TeamUserLevelStatistic.java | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 43 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamUserLevelStatistic.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamUserLevelStatistic.java index 7190291..4ca54a8 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamUserLevelStatistic.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamUserLevelStatistic.java @@ -6,7 +6,7 @@ import org.yeshi.utils.mybatis.Table; /** - * 鍥㈤槦鎴愬憳绛夌骇缁熻 + * 鍥㈤槦鎴愬憳绛夌骇缁熻 -鏈夋晥绮変笣 * @author Administrator * */ @@ -28,10 +28,36 @@ private Integer superFirstCount; @Column(name = "tuls_super_second_count") private Integer superSecondCount; + @Column(name = "tuls_tearcher_first_count") + private Integer tearcherFirstCount; + @Column(name = "tuls_tearcher_second_count") + private Integer tearcherSecondCount; + @Column(name = "tuls_create_time") private Date createTime; @Column(name = "tuls_update_time") private Date updateTime; + + @Column(name = "tuls_daren_first_count") + private Integer daRenFirstCount; + @Column(name = "tuls_daren_second_count") + private Integer daRenSecondCount; + + public Integer getDaRenFirstCount() { + return daRenFirstCount; + } + + public void setDaRenFirstCount(Integer daRenFirstCount) { + this.daRenFirstCount = daRenFirstCount; + } + + public Integer getDaRenSecondCount() { + return daRenSecondCount; + } + + public void setDaRenSecondCount(Integer daRenSecondCount) { + this.daRenSecondCount = daRenSecondCount; + } public Long getId() { return id; @@ -112,4 +138,20 @@ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } + + public Integer getTearcherFirstCount() { + return tearcherFirstCount; + } + + public void setTearcherFirstCount(Integer tearcherFirstCount) { + this.tearcherFirstCount = tearcherFirstCount; + } + + public Integer getTearcherSecondCount() { + return tearcherSecondCount; + } + + public void setTearcherSecondCount(Integer tearcherSecondCount) { + this.tearcherSecondCount = tearcherSecondCount; + } } -- Gitblit v1.8.0