This commit is contained in:
qianjiawei
2023-09-20 23:08:04 +08:00
parent f636b12517
commit 0f57d7d396
9 changed files with 310 additions and 72 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}