admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/invite/TeamDailyRecord.java
@@ -1,202 +1,204 @@
package com.yeshi.fanli.entity.bus.user.invite;
import java.util.Date;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
/**
 * 用户粉丝统计记录-每日
 *
 * @author Administrator
 *
 */
@Document(collection = "team_daily_record")
public class TeamDailyRecord {
   @Id
   private String id;
   @Field
   @Indexed
   private Long uid;
   @Field
   private Date countDay; // 统计日期: 年-月-日
   @Field
   private String yearMonth; // 统计日期: 年-月
   @Field
   private Integer firstNum; // 一级
   @Field
   private Integer secondNum; // 二级
   @Field
   private Integer beyondNum; // 二级以外
   @Field
   private Integer firstDaRen;
   @Field
   private Integer secondDaRen;
   @Field
   private Integer beyondDaRen;
   @Field
   private Integer firstHighVIP;
   @Field
   private Integer secondHighVIP;
   @Field
   private Integer beyondHighVIP;
   @Field
   private Integer firstSuperVIP;
   @Field
   private Integer secondSuperVIP;
   @Field
   private Integer beyondSuperVIP;
   @Field
   private Date updateTime;
   public TeamDailyRecord() {}
   public TeamDailyRecord(Integer firstNum, Integer secondNum, Integer beyondNum) {
      this.firstNum = firstNum;
      this.secondNum = secondNum;
      this.beyondNum = beyondNum;
   }
   public String getId() {
      return id;
   }
   public void setId(String id) {
      this.id = id;
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public Date getCountDay() {
      return countDay;
   }
   public void setCountDay(Date countDay) {
      this.countDay = countDay;
   }
   public String getYearMonth() {
      return yearMonth;
   }
   public void setYearMonth(String yearMonth) {
      this.yearMonth = yearMonth;
   }
   public Integer getFirstNum() {
      return firstNum;
   }
   public void setFirstNum(Integer firstNum) {
      this.firstNum = firstNum;
   }
   public Integer getFirstDaRen() {
      return firstDaRen;
   }
   public void setFirstDaRen(Integer firstDaRen) {
      this.firstDaRen = firstDaRen;
   }
   public Integer getFirstHighVIP() {
      return firstHighVIP;
   }
   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;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
}
package com.yeshi.fanli.entity.bus.user.invite;
import java.util.Date;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
/**
 * 用户粉丝统计记录-每日
 *
 * @author Administrator
 *
 */
@Document(collection = "teamDailyRecord")
public class TeamDailyRecord {
   @Id
   private String id;
   @Field
   @Indexed
   private Long uid;
   @Field
   @Indexed
   private Date countDay; // 统计日期: 年-月-日
   @Field
   @Indexed
   private String yearMonth; // 统计日期: 年-月
   @Field
   private Integer firstNum; // 一级
   @Field
   private Integer secondNum; // 二级
   @Field
   private Integer beyondNum; // 二级以外
   @Field
   private Integer firstDaRen;
   @Field
   private Integer secondDaRen;
   @Field
   private Integer beyondDaRen;
   @Field
   private Integer firstHighVIP;
   @Field
   private Integer secondHighVIP;
   @Field
   private Integer beyondHighVIP;
   @Field
   private Integer firstSuperVIP;
   @Field
   private Integer secondSuperVIP;
   @Field
   private Integer beyondSuperVIP;
   @Field
   private Date updateTime;
   public TeamDailyRecord() {}
   public TeamDailyRecord(Integer firstNum, Integer secondNum, Integer beyondNum) {
      this.firstNum = firstNum;
      this.secondNum = secondNum;
      this.beyondNum = beyondNum;
   }
   public String getId() {
      return id;
   }
   public void setId(String id) {
      this.id = id;
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public Date getCountDay() {
      return countDay;
   }
   public void setCountDay(Date countDay) {
      this.countDay = countDay;
   }
   public String getYearMonth() {
      return yearMonth;
   }
   public void setYearMonth(String yearMonth) {
      this.yearMonth = yearMonth;
   }
   public Integer getFirstNum() {
      return firstNum;
   }
   public void setFirstNum(Integer firstNum) {
      this.firstNum = firstNum;
   }
   public Integer getFirstDaRen() {
      return firstDaRen;
   }
   public void setFirstDaRen(Integer firstDaRen) {
      this.firstDaRen = firstDaRen;
   }
   public Integer getFirstHighVIP() {
      return firstHighVIP;
   }
   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;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
}