33 lines
1020 B
C#
33 lines
1020 B
C#
namespace Tnb.QcMgr.Entities
|
|
{
|
|
public class CheckTaskData
|
|
{
|
|
public string? checktype { get; set; }
|
|
|
|
public string? materialid { get; set; }
|
|
public string? processid { get; set; }
|
|
public string? workid { get; set; }
|
|
public string? wareid { get; set; }
|
|
public List<CheckTaskDataInput>? checktypes { get; set; }
|
|
}
|
|
|
|
public class CheckTaskDataInput
|
|
{
|
|
public string? id { get; set; }
|
|
public List<TaskItemInput>? items { get; set; }
|
|
}
|
|
public class TaskItemInput
|
|
{
|
|
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; }
|
|
}
|
|
}
|