using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.BZModels.Models.UserCenterManager
{
[Tenant("usercenter")]
[SugarTable("Acl_UserInfo")]
public class AclUserInfo : BaseModel
{
///
/// IsStop
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsStop { get; set; }
///
/// Code
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string Code { get; set; }
///
/// Pwd
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string Pwd { get; set; }
///
/// PwdErrQty
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int PwdErrQty { get; set; }
///
/// PwdEditTime
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = true)]
public DateTime? PwdEditTime { get; set; }
///
/// Secretkey
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string Secretkey { get; set; }
///
/// Name
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string Name { get; set; }
///
/// WarehouseNo
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string WarehouseNo { get; set; }
///
/// HeadIcon
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string HeadIcon { get; set; }
///
/// SexNum
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int SexNum { get; set; }
///
/// Birthday
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = false)]
public DateTime Birthday { get; set; }
///
/// Mobile
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string Mobile { get; set; }
///
/// Telephone
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string Telephone { get; set; }
///
/// Email
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string Email { get; set; }
///
/// DeptId
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
public long? DeptId { get; set; }
///
/// ConfigId
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
public long ConfigId { get; set; }
}
}