using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class SysUser { public string Id { get; set; } public string SysNo { get; set; } public string SysName { get; set; } public string SysPassword { get; set; } public string SysRoleNo { get; set; } public string IsLocked { get; set; } public string Description { get; set; } public string IsSys { get; set; } public string GraduationYears { get; set; } public string AlumniChapterNames { get; set; } public string AlumniChapterNos { get; set; } public string UserIdLastMod { get; set; } public Nullable TimeLastLogin { get; set; } public System.DateTime TimeExpiration { get; set; } public Nullable TimeCreated { get; set; } public Nullable TimeLastMod { get; set; } } }