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