using System; namespace SSWMS.Common { [Serializable] public class STORAGE_LIST { public int STORAGE_LIST_ID { get; set; } public int STORAGE_ID { get; set; } public int GOODS_ID { get; set; } public decimal STORAGE_LIST_QUANTITY { get; set; } /// /// salverNumber 托盘条码 /// public string BOX_BARCODE { get; set; } public string GOODS_BARCODE { get; set; } /// /// productCode 产品编码 /// public string STORAGE_PROPERTY_01 { get; set; } /// /// productName 产品名称 /// public string STORAGE_PROPERTY_02 { get; set; } /// /// productLevel 产品等级 /// public string STORAGE_PROPERTY_03 { get; set; } /// /// packageType 包装方式 /// public string STORAGE_PROPERTY_04 { get; set; } /// /// customerCode 客户编码 /// public string STORAGE_PROPERTY_05 { get; set; } /// /// customerName 客户名称 /// public string STORAGE_PROPERTY_06 { get; set; } /// /// netWeight 净重 /// public string STORAGE_PROPERTY_07 { get; set; } /// /// roughWeight 毛重 /// public string STORAGE_PROPERTY_08 { get; set; } /// /// salverType STOCK_HEIGHT 2 高托 1 低托 /// public string STORAGE_PROPERTY_09 { get; set; } /// /// towerType STOCK_SIZE 2 方托盘 1 长托盘 /// public string STORAGE_PROPERTY_10 { get; set; } /// /// inTime 入库时间 /// public string STORAGE_PROPERTY_11 { get; set; } /// /// 备用 /// public string STORAGE_PROPERTY_12 { get; set; } } }