12345678910111213141516171819202122232425262728293031323334353637 |
- 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<System.DateTime> CreateTime { get; set; }
- public Nullable<System.DateTime> UpdateTime { get; set; }
- public string Creator { get; set; }
- public string Updator { get; set; }
- public string FullName { get; set; }
- }
- public enum SchoolStatus
- {
- 新用户,
- 开放,
- 关闭,
- 无效
- }
- }
|