1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| package com.yeshi.makemoney.app.entity.goldcorn;
|
| import org.springframework.data.mongodb.core.index.Indexed;
| import org.springframework.data.mongodb.core.mapping.Document;
|
| import java.util.Date;
|
| /**
| * @author hxh
| * @title: GoldCornRecord
| * @description: 金币记录
| * @date 2022/3/31 18:25
| */
| @Document(collection = "goldCornRecord")
| public class GoldCornGetRecord {
| private String id;
| @Indexed
| private Long uid;
| @Indexed
| private String day;
| private Integer cornNum;
|
| /**
| * 缘由用户ID(当有二级分销时存在)
| **/
| @Indexed
| private Long fromUid;
|
| @Indexed
| private GoldCornGetType type;
| private String remarks;
| private Date createTime;
| private Date updateTime;
| }
|
|