using System; namespace SSWMS.Common { [Serializable] public class PLAN_LIST { public int PLAN_LIST_ID { get; set; } public int PLAN_ID { get; set; } public decimal PLAN_LIST_QUANTITY { get; set; } public decimal PLAN_LIST_FINISHED_QUANTITY { get; set; } public int GOODS_ID { get; set; } public string BOX_BARCODE { get; set; } public string GOODS_BARCODE { get; set; } public string STORAGE_PROPERTY_01 { get; set; } public string STORAGE_PROPERTY_02 { get; set; } public string STORAGE_PROPERTY_03 { get; set; } public string STORAGE_PROPERTY_04 { get; set; } public string STORAGE_PROPERTY_05 { get; set; } public string STORAGE_PROPERTY_06 { get; set; } public string STORAGE_PROPERTY_07 { get; set; } public string STORAGE_PROPERTY_08 { get; set; } public string STORAGE_PROPERTY_09 { get; set; } public string STORAGE_PROPERTY_10 { get; set; } public string ERROR_TEXT { get; set; } } }