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 { /// /// 移库记录 Transfer record /// [Table("AGV_Transfer_record")] public class AGV_Transfer_record { /// /// 唯一号 GUID /// [Column("ID")] public string ID { get; set; } /// /// 工装号tool number /// [Column("LoadNo")] public string LoadNo { get; set; } /// /// 物料号 /// [Column("MaterielCode")] public string MaterielCode { get; set; } /// /// 物料名称 /// [Column("MaterielName")] public string MaterielName { get; set; } /// /// 数量 /// [Column("Quantity")] public decimal Quantity { get; set; } /// /// 来源库位位置location /// [Column("LocationName_Source")] public string LocationName_Source { get; set; } /// /// 终点库位位置location /// [Column("LocationName_Dest")] public string LocationName_Dest { get; set; } /// /// 创建时间Create time /// [Column("CreateDate")] public DateTime? CreateDate { get; set; } /// /// 是否接收receive or not /// [Column("HasBeenReceived")] public string HasBeenReceived { get; set; } } }