59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
||
|
|
{
|
||
|
|
///<summary>
|
||
|
|
///用户表
|
||
|
|
///</summary>
|
||
|
|
[SugarTable("User")]
|
||
|
|
public partial class User : SqlSugarBaseEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:微信用户ID
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public string WxUserId { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:昵称
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public string Name { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:当前成长值
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int GrowthPoints { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:头像地址
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public string AvatarUrl { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:积分余额
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int Points { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:用户类型: Normal, VIP
|
||
|
|
/// Default:Normal
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Type { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:状态: Active, Disabled
|
||
|
|
/// Default:Active
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Status { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|