20 lines
517 B
C#
20 lines
517 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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; }
|
|
}
|
|
}
|