| | |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Document(collection = "team_daily_record")
|
| | | @Document(collection = "teamDailyRecord")
|
| | | public class TeamDailyRecord {
|
| | |
|
| | | @Id
|
| | |
| | | @Indexed
|
| | | private Long uid;
|
| | | @Field
|
| | | @Indexed
|
| | | private Date countDay; // 统计日期: 年-月-日
|
| | | @Field
|
| | | @Indexed
|
| | | private String yearMonth; // 统计日期: 年-月
|
| | | @Field
|
| | | private Integer firstNum; // 一级
|
| | |
| | | @Field
|
| | | private Integer beyondSuperVIP;
|
| | | @Field
|
| | | private String updateTime;
|
| | | private Date updateTime;
|
| | |
|
| | |
|
| | | public TeamDailyRecord() {}
|
| | |
| | | this.beyondSuperVIP = beyondSuperVIP;
|
| | | }
|
| | |
|
| | | public String getUpdateTime() {
|
| | | public Date getUpdateTime() {
|
| | | return updateTime;
|
| | | }
|
| | |
|
| | | public void setUpdateTime(String updateTime) {
|
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|