This commit is contained in:
qianjiawei
2023-06-25 17:36:35 +08:00
parent ee671f897b
commit b8f32bd438
4 changed files with 184 additions and 42 deletions

View File

@@ -29,16 +29,15 @@ namespace Tnb.QcMgr.Entities.Dto
public string? itemdid { get; set; }
public ExecItemShow? setShow { get; set; }
public ExecItemData? setData { get; set; }
public PostItemForm? postItemForm { get; set; }
}
public class PostItemForm
{
public string? attachment { get; set; }
public string[]? checkbox { get; set; }
public object[]? checkbox { get; set; }
public string? errorcause { get; set; }
public string? errorlevel { get; set; }
public int measuredValue { get; set; }
public object? measuredValue { get; set; }
public string? radio { get; set; }
public string? remark { get; set; }
public string? text { get; set; }
@@ -103,29 +102,53 @@ namespace Tnb.QcMgr.Entities.Dto
public string? status { get; set; }
public string? result { get; set; }
public List<CheckExexTypeInput>? checktypes { get; set; }
public List<List<Exextype>>? checktypes { get; set; }
}
public class CheckExexTypeInput
public class Exextype
{
public string? id { get; set; }
public string? checktypeid { get; set; }
public string? checktypename { get; set; }
public List<ExecItemInput>? items { get; set; }
}
public class ExecItemInput
{
public string? itemdid { get; set; }
public string? itemdid { get; set; }
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; }
public string? customer { get; set; }
public string? result { get; set; }
public string? code { get; set; }
public string? name { get; set; }
public ExecItemData? setData { get; set; }
public ExecItemShow? setShow { get; set; }
public string? postItemForm { get; set; }
public string? result { get; set; }
}
public class Result
{
public string? mainid { get; set; }
public string? checknum { get; set; }
public string? status { get; set; }
public string? result { get; set; }
public List<List<Checktype>>? checktypes { get; set; }
}
public class Checktype
{
public string? checktypeid { get; set; }
public string? checktypename { get; set; }
public List<ExecItem>? items { get; set; }
}
public class ExecItem
{
public string? itemdid { get; set; }
public string? itemid { get; set; }
public string? code { get; set; }
public string? name { get; set; }
public ExecItemData? setData { get; set; }
public ExecItemShow? setShow { get; set; }
public PostItemForm? postItemForm { get; set; }
public string? result { get; set; }
}
}