using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { [Table("YM_School")] public partial class YM_School { [Column("ID", IsPrimaryKey = true), AutoIncrement] public int ID { get; set; } public string Name { get; set; } public string Description { get; set; } public string SchoolBigType { get; set; } public string SchoolSmallType { get; set; } public string UserName { get; set; } public string PassWord { get; set; } public string CertificateFileID { get; set; } public int Status { get; set; } public Nullable CreateTime { get; set; } public Nullable UpdateTime { get; set; } public string Creator { get; set; } public string Updator { get; set; } public string FullName { get; set; } } public enum SchoolStatus { 新用户, 开放, 关闭, 无效 } }