| 123456789101112131415161718192021222324252627 |
- 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<System.DateTime> TimeLastLogin { get; set; }
- public System.DateTime TimeExpiration { get; set; }
- public Nullable<System.DateTime> TimeCreated { get; set; }
- public Nullable<System.DateTime> TimeLastMod { get; set; }
- }
- }
|