admin
2022-04-02 87532065ba0c304817c31628ebb1000f4e308f12
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.user;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
 
/**
 * @author hxh
 * @title: UserExtraInfo
 * @description: 附加信息
 * @date 2022/4/2 14:14
 */
@Document(collection = "userExtraInfo")
public class UserExtraInfo {
 
    @Id
    private Long id;
    /**
     * 邀请码
     **/
    @Indexed
    private String inviteCode;
 
 
    private Date createTime;
    private Date updateTime;
 
 
 
 
 
}