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_UserToken")]
public class AclUsertoken : BaseModel
{
///
/// 凭证表-编号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "凭证表-编号")]
public string Code { get; set; }
///
/// 用户编号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "用户编号")]
public string UserNo { get; set; }
///
/// 用户姓名
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "用户姓名")]
public string UserName { get; set; }
///
/// 登录时间
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = false, ColumnDescription = "登录时间")]
public DateTime BTime { get; set; }
///
/// 最后一次操作时间
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = false, ColumnDescription = "最后一次操作时间")]
public DateTime ETime { get; set; }
///
/// APP类型
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "APP类型")]
public int AppTypeNum { get; set; }
///
/// 登录IP地址
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "登录IP地址")]
public string IPAddress { get; set; }
///
/// 离线版登录仓库
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "离线版登录仓库")]
public string WarehouseNo { get; set; }
///
/// 区域列表
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true, ColumnDescription = "区域列表")]
public string WareaNoList { get; set; }
///
/// 访问设备编号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "访问设备编号")]
public string AppDeviceNo { get; set; }
}
}