This commit is contained in:
qianjiawei
2023-06-21 13:35:51 +08:00
parent 8808b48e78
commit 4c02911d55
8 changed files with 250 additions and 215 deletions

View File

@@ -9,12 +9,12 @@ namespace Tnb.QcMgr.Entities.Dto
{
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; }
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; }
}
}