admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/invite/TeamDailyRecord.java
@@ -13,7 +13,7 @@
 * @author Administrator
 *
 */
@Document(collection = "team_daily_record")
@Document(collection = "teamDailyRecord")
public class TeamDailyRecord {
   @Id
@@ -22,8 +22,10 @@
   @Indexed
   private Long uid;
   @Field
   @Indexed
   private Date countDay; // 统计日期: 年-月-日
   @Field
   @Indexed
   private String yearMonth; // 统计日期: 年-月
   @Field
   private Integer firstNum; // 一级
@@ -50,7 +52,7 @@
   @Field
   private Integer beyondSuperVIP;
   @Field
   private String updateTime;
   private Date updateTime;
   
   public TeamDailyRecord() {}
@@ -190,11 +192,11 @@
      this.beyondSuperVIP = beyondSuperVIP;
   }
   public String getUpdateTime() {
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(String updateTime) {
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }