namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("TASKMainTask")] public partial class TASKMainTask { public int id { get; set; } [Required] [StringLength(20)] public string syscode { get; set; } [Required] [StringLength(50)] public string taskno { get; set; } public DateTime sendtime { get; set; } [StringLength(50)] public string sourceplace { get; set; } [StringLength(50)] public string toplace { get; set; } [StringLength(100)] public string processcardnumber { get; set; } [StringLength(100)] public string materialcode { get; set; } public int quantity { get; set; } public int tasktype { get; set; } public int status { get; set; } public DateTime decompositiontime { get; set; } public int wipstatus { get; set; } public int decompositiontimes { get; set; } [StringLength(100)] public string packageno { get; set; } public int islots { get; set; } public int priority { get; set; } } }