using System; using System.Collections.Generic; using System.Text; namespace WIDESEA.Common.CustomModels { public class LocationContainer { /// /// 货位ID /// public string LocationID { get; set; } /// /// 数量 /// public decimal? Qty { get; set; } /// /// 入库时间 /// public DateTime? InboundDatetime { get; set; } /// /// 库存ID /// public string ContainerID { get; set; } /// /// 列 /// public int? LocationColumn { get; set; } /// /// 层 /// public int? LocationLayer { get; set; } /// /// 行 /// public int? LocationLine { get; set; } /// /// 库存明细ID /// public string ContainerDetailID { get; set; } /// /// 托盘号 /// public string Barcode { get; set; } /// /// 物料编号 /// public string MaterielID { get; set; } /// /// 物料名称 /// public string MatereilName { get; set; } /// /// 物料类型 /// public string MatereilType { get; set; } /// /// 生产日期 /// public DateTime? ProductTime { get; set; } /// /// 供应商批次 /// public string Batch { get; set; } /// /// 重量 /// public decimal? text1 { get; set; } /// /// 捆号 /// public string text3 { get; set; } } }