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_Coach")] public partial class YM_Coach { [Column("ID", IsPrimaryKey = true), AutoIncrement] public int ID { get; set; } public string Name { get; set; } public string Sex { get; set; } public int SchoolID { get; set; } public string Title { get; set; } public string Project { get; set; } public string IDCard { get; set; } public Nullable CreateTime { get; set; } public Nullable UpdateTime { get; set; } public string Creator { get; set; } public string Updator { get; set; } public string MobilePhone { get; set; } public int Status { get; set; } public string SchoolName { get; set; } } public class YM_CoachExted : YM_Coach { public string[] Projects { get; set; } } }