From fb885c8bff26484f2bb21e697f182cc35bc4fa63 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期二, 12 五月 2020 15:27:08 +0800 Subject: [PATCH] 2.1.1 新需求 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamDailyRecord.java | 153 +++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 123 insertions(+), 30 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamDailyRecord.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamDailyRecord.java index c6b15a5..efeb9ee 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamDailyRecord.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/TeamDailyRecord.java @@ -13,7 +13,7 @@ * @author Administrator * */ -@Document(collection = "team_daily_record") +@Document(collection = "team_daily_Record") public class TeamDailyRecord { @Id @@ -22,23 +22,43 @@ @Indexed private Long uid; @Field - private Integer firstCount; // 涓�绾� + private Date countDay; // 缁熻鏃ユ湡: 骞�-鏈�-鏃� @Field - private Integer secondCount; // 浜岀骇 + private String yearMonth; // 缁熻鏃ユ湡: 骞�-鏈� @Field - private Integer secondBeyond; // 浜岀骇浠ュ + private Integer firstNum; // 涓�绾� @Field - private Date statisticDay; // 缁熻鏃ユ湡: 骞�-鏈�-鏃� + private Integer firstDaRen; @Field - private Date updateTime; + private Integer firstHighVIP; + @Field + private Integer firstSuperVIP; + @Field + private Integer secondNum; // 浜岀骇 + @Field + private Integer secondDaRen; + @Field + private Integer secondHighVIP; + @Field + private Integer secondSuperVIP; + @Field + private Integer beyondNum; // 浜岀骇浠ュ + @Field + private Integer beyondDaRen; + @Field + private Integer beyondHighVIP; + @Field + private Integer beyondSuperVIP; public TeamDailyRecord() {} - public TeamDailyRecord(Integer firstCount, Integer secondCount, Integer secondBeyond) { - this.firstCount = firstCount; - this.secondCount = secondCount; - this.secondBeyond = secondBeyond; + public TeamDailyRecord(Integer firstNum, Integer secondNum, Integer beyondNum) { + this.firstNum = firstNum; + this.secondNum = secondNum; + this.beyondNum = beyondNum; } + + public String getId() { return id; @@ -56,43 +76,116 @@ this.uid = uid; } - public Integer getFirstCount() { - return firstCount; + public Date getCountDay() { + return countDay; } - public void setFirstCount(Integer firstCount) { - this.firstCount = firstCount; + public void setCountDay(Date countDay) { + this.countDay = countDay; } - public Integer getSecondCount() { - return secondCount; + public String getYearMonth() { + return yearMonth; } - public void setSecondCount(Integer secondCount) { - this.secondCount = secondCount; + public void setYearMonth(String yearMonth) { + this.yearMonth = yearMonth; } - public Date getUpdateTime() { - return updateTime; + public Integer getFirstNum() { + return firstNum; } - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; + public void setFirstNum(Integer firstNum) { + this.firstNum = firstNum; } - public Integer getSecondBeyond() { - return secondBeyond; + public Integer getFirstDaRen() { + return firstDaRen; } - public void setSecondBeyond(Integer secondBeyond) { - this.secondBeyond = secondBeyond; + public void setFirstDaRen(Integer firstDaRen) { + this.firstDaRen = firstDaRen; } - public Date getStatisticDay() { - return statisticDay; + public Integer getFirstHighVIP() { + return firstHighVIP; } - public void setStatisticDay(Date statisticDay) { - this.statisticDay = statisticDay; + public void setFirstHighVIP(Integer firstHighVIP) { + this.firstHighVIP = firstHighVIP; } + + public Integer getFirstSuperVIP() { + return firstSuperVIP; + } + + public void setFirstSuperVIP(Integer firstSuperVIP) { + this.firstSuperVIP = firstSuperVIP; + } + + public Integer getSecondNum() { + return secondNum; + } + + public void setSecondNum(Integer secondNum) { + this.secondNum = secondNum; + } + + public Integer getSecondDaRen() { + return secondDaRen; + } + + public void setSecondDaRen(Integer secondDaRen) { + this.secondDaRen = secondDaRen; + } + + public Integer getSecondHighVIP() { + return secondHighVIP; + } + + public void setSecondHighVIP(Integer secondHighVIP) { + this.secondHighVIP = secondHighVIP; + } + + public Integer getSecondSuperVIP() { + return secondSuperVIP; + } + + public void setSecondSuperVIP(Integer secondSuperVIP) { + this.secondSuperVIP = secondSuperVIP; + } + + public Integer getBeyondNum() { + return beyondNum; + } + + public void setBeyondNum(Integer beyondNum) { + this.beyondNum = beyondNum; + } + + public Integer getBeyondDaRen() { + return beyondDaRen; + } + + public void setBeyondDaRen(Integer beyondDaRen) { + this.beyondDaRen = beyondDaRen; + } + + public Integer getBeyondHighVIP() { + return beyondHighVIP; + } + + public void setBeyondHighVIP(Integer beyondHighVIP) { + this.beyondHighVIP = beyondHighVIP; + } + + public Integer getBeyondSuperVIP() { + return beyondSuperVIP; + } + + public void setBeyondSuperVIP(Integer beyondSuperVIP) { + this.beyondSuperVIP = beyondSuperVIP; + } + } -- Gitblit v1.8.0