using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.FJC.Entity.Package { public class PackageSummary { public string MATERIAL_CODE { get; set; } public string MATERIAL_NAME { get; set; } public string MATERIAL_SHORT { get; set; } public int CAPACITY { get; set; } public int USINGCOUNT { get; set; } public int REMAINDER { get { return CAPACITY - USINGCOUNT; } } public int PACKAGECOUNT { get; set; } public int PACKAGECAPACITY { get; set; } public string MATERIAL_TYPE_CODE { get; set; } public string MATERIAL_TYPE_NAME { get; set; } public string WORKCELL_CODE { get; set; } public string WORKCELL_NAME { get; set; } public string WORKCENTER_CODE { get; set; } public string WORKCENTER_NAME { get; set; } } }