15 lines
401 B
C#
15 lines
401 B
C#
using ZR.Model.MES.qu;
|
|
|
|
namespace ZR.Model.MES.qc.DTO
|
|
{
|
|
public class CheckItemTableDTO
|
|
{
|
|
|
|
public List<QcInspectionitem> Paint { set; get; }
|
|
public List<QcInspectionitem> device { set; get; }
|
|
public List<QcInspectionitem> Blank { set; get; }
|
|
public List<QcInspectionitem> program { set; get; }
|
|
public List<QcInspectionitem> Team { set; get; }
|
|
}
|
|
}
|