namespace iWareSql { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class wms_task { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(50)] public string TaskNo { get; set; } [StringLength(50)] public string TaskName { get; set; } public int? MoveType { get; set; } [StringLength(50)] public string MoveTypeName { get; set; } public int BusinessType { get; set; } [Required] [StringLength(50)] public string BusinessTypeName { get; set; } public int TaskStatus { get; set; } [Required] [StringLength(255)] public string TaskStatusName { get; set; } public int TaskPriority { get; set; } [StringLength(255)] public string TaskDescribe { get; set; } [StringLength(255)] public string TaskMsg { get; set; } [Required] [StringLength(50)] public string OrderNo { get; set; } [StringLength(50)] public string RelationNo { get; set; } [Required] [StringLength(50)] public string ContainerCode { get; set; } [StringLength(50)] public string SourcePlaceCode { get; set; } [StringLength(50)] public string ToAreaCode { get; set; } [StringLength(50)] public string ToPlaceCode { get; set; } public int? Lane { get; set; } public int? Row { get; set; } public int? DetectionHeight { get; set; } public DateTime? IssueTime { get; set; } public DateTime? FinishedTime { get; set; } public bool IsFlagFinish { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } [StringLength(64)] public string UpdateUserName { get; set; } public bool IsDelete { get; set; } } }