Files
tnb.server/QcMgr/Tnb.QcMgr.Entities/Dto/CheckTaskData.cs
2023-11-06 19:35:59 +08:00

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; }
}
}