using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Entitys.Mes { /// /// 移送任务 Transport invitation /// [Table("AGV_Transport_Request")] public class AGV_Transport_Request { /// /// 任务号 /// [Column("TaskNo")] public string TaskNo { get; set; } /// /// 请求类型 /// [Column("RequestType")] public int RequestType { get; set; } /// /// 工装具号 /// [Column("LoadNo")] public string LoadNo { get; set; } /// /// 工装类型 /// [Column("LoadType")] public string LoadType { get; set; } /// /// 物料号 /// [Column("MaterielCode")] public string MaterielCode { get; set; } /// /// 物料名称 /// [Column("MaterielName")] public string MaterielName { get; set; } /// /// 数量 /// [Column("Quantity")] public decimal Quantity { get; set; } /// /// 任务优先级 /// [Column("TaskPriority")] public int TaskPriority { get; set; } /// /// 起始位置 /// [Column("StartLocation")] public string StartLocation { get; set; } /// /// 终点位置 /// [Column("EndLocation")] public string EndLocation { get; set; } /// /// 创建时间 /// [Column("CreateDate")] public DateTime? CreateDate { get; set; } /// /// 是否接收 /// [Column("HasBeenReceived")] public string HasBeenReceived { get; set; } } }