质检模块
This commit is contained in:
21
QcMgr/Tnb.QcMgr.Entities/Dto/CheckItem.cs
Normal file
21
QcMgr/Tnb.QcMgr.Entities/Dto/CheckItem.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.QcMgr.Entities
|
||||
{
|
||||
public class CheckItemOut
|
||||
{
|
||||
public string checktypeid { get; set; }
|
||||
public string checktypename { get; set; }
|
||||
public List<CheckItem> items { get; set; }
|
||||
}
|
||||
public class CheckItem
|
||||
{
|
||||
public string itemid { get; set; }
|
||||
public string name { get; set; }
|
||||
public string code { get; set; }
|
||||
}
|
||||
}
|
||||
32
QcMgr/Tnb.QcMgr.Entities/Dto/CheckItems.cs
Normal file
32
QcMgr/Tnb.QcMgr.Entities/Dto/CheckItems.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.QcMgr.Entities.Dto
|
||||
{
|
||||
public class CheckItemsInput
|
||||
{
|
||||
public string name { get; set; }
|
||||
public string status { get; set; }
|
||||
public List<CheckType> checktypoes { get; set; }
|
||||
}
|
||||
public class CheckType
|
||||
{
|
||||
public string id { get; set; }
|
||||
public List<Item> items { get; set; }
|
||||
}
|
||||
public class Item
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
33
QcMgr/Tnb.QcMgr.Entities/Dto/CheckPlan.cs
Normal file
33
QcMgr/Tnb.QcMgr.Entities/Dto/CheckPlan.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.QcMgr.Entities
|
||||
{
|
||||
public class CheckPlanInput
|
||||
{
|
||||
public string name { get; set; }
|
||||
|
||||
public string status { get; set; }
|
||||
|
||||
public string checktype { get; set; }
|
||||
|
||||
public string numtype { get; set; }
|
||||
|
||||
public string pagetype { get; set; }
|
||||
|
||||
public string writerule { get; set; }
|
||||
|
||||
public string remind { get; set; }
|
||||
|
||||
public string attachment { get; set; }
|
||||
|
||||
public string isaddmul { get; set; }
|
||||
|
||||
public string triggertype { get; set; }
|
||||
|
||||
public string content { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user