You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
958 B
31 lines
958 B
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; }
|
|
}
|
|
}
|
|
|