质检方案

This commit is contained in:
qianjiawei
2023-06-12 15:01:37 +08:00
parent 21115d3b29
commit 66b8eb1ac3
3 changed files with 45 additions and 1 deletions

View File

@@ -3,10 +3,18 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NPOI.SS.Formula.PTG;
namespace Tnb.QcMgr.Entities.Dto
{
public class Trigger
public class TriggerPlan
{
public string id { get; set; }
public string name { get; set; }
public string code { get; set; }
public string type { get; set; }
public string cycle { get; set; }
public string[] trievent { get; set; }
public string[] trieventid { get; set; }
}
}