using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.UserCenterManager.AclUsertokenDtos { public class AclUsertokenDto { /// /// Id /// public string Id { get; set; } /// /// 凭证表-编号 /// public string Code { get; set; } /// /// 用户编号 /// public string UserNo { get; set; } /// /// 用户姓名 /// public string UserName { get; set; } /// /// 登录时间 /// public DateTime BTime { get; set; } /// /// 最后一次操作时间 /// public DateTime ETime { get; set; } /// /// APP类型 /// public int AppTypeNum { get; set; } /// /// 登录IP地址 /// public string IPAddress { get; set; } /// /// 离线版登录仓库 /// public string WarehouseNo { get; set; } /// /// 区域列表 /// public string WareaNoList { get; set; } /// /// 访问设备编号 /// public string AppDeviceNo { get; set; } /// /// Memo /// public string Memo { get; set; } /// /// AddWho /// public string AddWho { get; set; } /// /// AddTime /// public DateTime AddTime { get; set; } /// /// EditWho /// public string EditWho { get; set; } /// /// EditTime /// public DateTime EditTime { get; set; } } public class AclUsertokenQueryDto : PagerInfo { /// /// 用户编号 /// public string UserNo { get; set; } /// /// 用户姓名 /// public string UserName { get; set; } } }