39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|