using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.External { public class ItemRelEntity { /// /// 托盘类型 /// public string CN_S_TRAY_CODE { get; set; } /// /// 托盘类型 /// public string CN_S_TRAY_TYPE { get; set; } /// /// 货主 /// public string CN_S_OWNER { get; set; } /// /// 物料名称 /// public string CN_S_ITEM_NAME { get; set; } /// /// 物料编码 /// public string CN_S_ITEM_CODE { get; set; } /// /// 物料类型 /// public string CN_S_ITEM_STATE { get; set; } /// /// 批次号 /// public string CN_S_LOT_NO { get; set; } /// /// 数量 /// public decimal CN_F_PACKING_QTY { get; set; } /// /// 单位 /// public string CN_S_PACKING_UNIT { get; set; } /// /// 生产日期 /// public DateTime? CN_T_PRODUCTION { get; set; } /// /// 备注 /// public string CN_S_NOTE { get; set; } /// /// 序列号 /// public string CN_S_SERIAL_NO { get; set; } /// /// 生产批次号 /// public string CN_S_PRODUCTION_BATCH { get; set; } /// /// 采购价格 /// public decimal CN_F_PURCHASE_PRICE { get; set; } } }