85 lines
2.7 KiB
C#
85 lines
2.7 KiB
C#
namespace Tnb.QcMgr.Entities
|
|
{
|
|
public class CheckItemsInput
|
|
{
|
|
public string? id { get; set; }
|
|
public string? name { get; set; }
|
|
public string? status { get; set; }
|
|
public List<CheckTypeInput>? checktypes { get; set; }
|
|
}
|
|
public class CheckTypeInput
|
|
{
|
|
public string? id { get; set; }
|
|
public List<ItemInput>? items { get; set; }
|
|
}
|
|
public class ItemInput
|
|
{
|
|
public string? itemid { get; set; }
|
|
public string? code { get; set; }
|
|
public string? name { get; set; }
|
|
public string? itemdid { 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; }
|
|
public string? customer { get; set; }
|
|
}
|
|
public class CheckItemsOut
|
|
{
|
|
public string? id { get; set; }
|
|
public string? name { get; set; }
|
|
public string? status { get; set; }
|
|
public List<CheckTypeOut>? checktypes { get; set; }
|
|
}
|
|
public class CheckTypeOut
|
|
{
|
|
public string? checktypeid { get; set; }
|
|
public string? checktypename { get; set; }
|
|
public List<ItemOut>? items { get; set; }
|
|
}
|
|
public class ItemOut
|
|
{
|
|
public string? itemid { get; set; }
|
|
public string? code { get; set; }
|
|
public string? name { get; set; }
|
|
public string? itemdid { get; set; }
|
|
public Show? setShow { get; set; }
|
|
public Data? setData { get; set; }
|
|
|
|
}
|
|
public class Show
|
|
{
|
|
public bool extype { get; set; }
|
|
public bool excontent { get; set; }
|
|
public bool check { get; set; }
|
|
public bool errorcause { get; set; }
|
|
public bool errorlevel { get; set; }
|
|
public bool remark { get; set; }
|
|
public bool attachment { get; set; }
|
|
public bool customer { get; set; }
|
|
public bool isexec { get; set; }
|
|
}
|
|
public class Data
|
|
{
|
|
public string? extype { get; set; }
|
|
public Excontent? 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? customer { get; set; }
|
|
public Isexec? isexec { get; set; }
|
|
}
|
|
public class Isexec
|
|
{
|
|
public bool remark { get; set; }
|
|
public bool attachment { get; set; }
|
|
}
|
|
}
|