33 lines
903 B
C#
33 lines
903 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.QcMgr.Entities.Dto
|
|
{
|
|
public class CheckItemsInput
|
|
{
|
|
public string name { get; set; }
|
|
public string status { get; set; }
|
|
public List<CheckType> checktypoes { get; set; }
|
|
}
|
|
public class CheckType
|
|
{
|
|
public string id { get; set; }
|
|
public List<Item> items { get; set; }
|
|
}
|
|
public class Item
|
|
{
|
|
public string itemid { get; set; }
|
|
public string extype { get; set; }
|
|
public string excontent { get; set; }
|
|
public string check { get; set; }
|
|
public string errorcause { get; set; }
|
|
public string errorlevel { get; set; }
|
|
public string remark { get; set; }
|
|
public string attachment { get; set; }
|
|
public string isexec { get; set; }
|
|
}
|
|
}
|