Files
shgx_tz_mes_backend_sync/ZR.Model/MES/qc/DTO/CheckItemTableDTO.cs

15 lines
401 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
using ZR.Model.MES.qu;
2023-12-01 15:39:07 +08:00
namespace ZR.Model.MES.qc.DTO
{
public class CheckItemTableDTO
{
2024-06-07 11:04:26 +08:00
public List<QcInspectionitem> Paint { set; get; }
2023-12-01 15:39:07 +08:00
public List<QcInspectionitem> device { set; get; }
public List<QcInspectionitem> Blank { set; get; }
public List<QcInspectionitem> program { set; get; }
2024-06-07 11:04:26 +08:00
public List<QcInspectionitem> Team { set; get; }
2023-12-01 15:39:07 +08:00
}
}