2021-04-08 20:09:59 +08:00
|
|
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace ET
|
|
|
|
|
{
|
|
|
|
|
[BsonIgnoreExtraElements]
|
|
|
|
|
public class User : Entity
|
|
|
|
|
{
|
|
|
|
|
public string NickName;
|
|
|
|
|
public int JobId;
|
|
|
|
|
public string Family;
|
|
|
|
|
public string Title;
|
|
|
|
|
public int Level;
|
|
|
|
|
public CampType CampType;
|
|
|
|
|
public long lastLoginTime;
|
|
|
|
|
|
|
|
|
|
public int YuanBao;
|
|
|
|
|
public int Voucher;
|
2021-08-06 15:04:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 无用
|
|
|
|
|
/// </summary>
|
2021-04-08 20:09:59 +08:00
|
|
|
|
public int SkinId;
|
|
|
|
|
public bool hasRole;
|
|
|
|
|
public bool isChangeDB;
|
|
|
|
|
}
|
|
|
|
|
}
|