using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Epost.Model { public class UserModel { public long Row { get; set; }//Row public int Id { get; set; }//ID // public string Id { get; set; }//ID public string UserName { get; set; } public string PassWord { get; set; } public string LoginName { get; set; } public string Role_Id { get; set; } public int PageIndex { get; set; } public int PageSize { get; set; } public string Area { get; set; } public string Block { get; set; } public int Count { get; set; } public int Number { get; set; } public string Oprationtime { get; set; }//开始时间 public string ReadTime { get; set; }//结束时间 public string LightColor { get; set; } public UserModel() { } public UserModel(int Id, string UserName, string PassWord, string LoginName, string Role_Id, int PageIndex, int PageSize, long Row, string Area, int Count, int Number, string Oprationtime, string ReadTime,string LightColor) { this.Oprationtime = Oprationtime; this.ReadTime = ReadTime; this.Count = Count; this.Number = Number; this.Id = Id; this.UserName = UserName; this.PassWord = PassWord; this.LoginName = LoginName; this.Role_Id = Role_Id; this.PageIndex = PageIndex; this.PageSize = PageSize; this.Row = Row; this.Area = Area; this.LightColor = LightColor; } } }