12345678910111213141516171819202122232425262728293031 |
- 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_Judge")]
- public partial class YM_Judge
- {
- [Column("ID", IsPrimaryKey = true), AutoIncrement]
- public int ID { get; set; }
- public string Name { get; set; }
- public string Sex { get; set; }
- public string IDCard { get; set; }
- public string JudgmentNo { get; set; }
- public string Project { get; set; }
- public string Level { 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 int SchoolID { get; set; }
- public string SchoolName { get; set; }
- public string Contact { get; set; }
- }
- }
|