using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Common { public class ImportTemplateEntity { /// /// 仓库编码 /// public string CN_S_STOCK_CODE { get; set; } /// /// 货位编码 /// public string CN_S_LOCATION_CODE { get; set; } /// /// 容器编码 /// public string CN_S_TRAY_CODE { get; set; } /// /// 物料编码 /// public string CN_S_ITEM_CODE { get; set; } /// /// 数量 /// public decimal? CN_F_QUANTITY { get; set; } /// /// 生产批次 /// public string CN_S_PRODUCTION_BATCH { get; set; } /// /// 到货批次 /// //public string CN_S_LOT_CODE { get; set; } /// /// 物料状态 /// public string CN_S_ITEM_STATE { get; set; } /// /// 物料名称 /// public string CN_S_ITEM_NAME { get; set; } /// /// 计量单位 /// public string CN_S_MEASURE_UNIT { get; set; } /// /// 图号 /// public string CN_S_FIGURE_NO { get; set; } /// /// 规格型号 /// public string CN_S_MODEL { get; set; } /// /// 库区编码 /// public string CN_S_AREA_CODE { get; set; } } public class ErrorRowData { public string CN_S_RowIndex { get; set; } public string CN_S_ErrorContent { get; set; } } }