namespace yunneiWCS.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("task")] public partial class task { public long taskId { get; set; } [StringLength(50)] public string createListCode { get; set; } public int? taskType { get; set; } [StringLength(50)] public string taskName { get; set; } public int? taskStatus { get; set; } [StringLength(50)] public string sourcePlace { get; set; } [StringLength(50)] public string middlePlace { get; set; } [StringLength(50)] public string toPlace { get; set; } public int? area { get; set; } public int? priority { get; set; } public DateTime? createTime { get; set; } public DateTime? finishTime { get; set; } public int? quantity { get; set; } [StringLength(50)] public string materialCode { get; set; } [StringLength(50)] public string materialName { get; set; } public int? sendMesed { get; set; } [StringLength(50)] public string mesReply { get; set; } [StringLength(100)] public string supplier { get; set; } [StringLength(100)] public string containerCode { get; set; } [StringLength(500)] public string remark { get; set; } [StringLength(50)] public string taskTypeName { get; set; } public int? isForceComplete { get; set; } public DateTime? forceCompleteTime { get; set; } [StringLength(50)] public string forceCompleteUser { get; set; } [StringLength(500)] public string forceCompleteReason { get; set; } [StringLength(50)] public string isForceCompleteName { get; set; } public int? isSendTotianyong { get; set; } public DateTime? SendTotianyongTime { get; set; } [StringLength(50)] public string isSendTotianyongName { get; set; } [StringLength(500)] public string SendTotianyongRemark { get; set; } public int? isQueLiao { get; set; } [StringLength(50)] public string queLiaoSupplier { get; set; } [StringLength(100)] public string version { get; set; } [StringLength(100)] public string creator { get; set; } [StringLength(50)] public string lastModifier { get; set; } public DateTime? LastModifyTime { get; set; } [StringLength(100)] public string PlcTaskNo { get; set; } [StringLength(100)] public string AgvTaskNo { get; set; } } }