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;
|
|
|
|
|
|
}
|