69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|||
|
|
{
|
|||
|
|
///<summary>
|
|||
|
|
///用户表
|
|||
|
|
///</summary>
|
|||
|
|
[SugarTable("WxUser")]
|
|||
|
|
public partial class WxUser : SqlSugarBaseEntity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:微信OpenId
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public string OpenId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:微信UnionId
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string UnionId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:昵称
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string NickName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:头像地址
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string AvatarUrl { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:手机号
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string Phone { 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; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:密码,默认手机后4位
|
|||
|
|
/// Default:Active
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public string Pwd { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|