1
This commit is contained in:
@@ -13,6 +13,7 @@ namespace Tnb.QcMgr.Entities
|
||||
public string? addid { get; set; }
|
||||
public string? triggertype { get; set; }
|
||||
public string? content { get; set; }
|
||||
public int? number { get; set; }
|
||||
public List<CheckPlanTypeInput>? checktypes { get; set; }
|
||||
}
|
||||
public class CheckPlanTypeInput
|
||||
@@ -38,10 +39,11 @@ namespace Tnb.QcMgr.Entities
|
||||
{
|
||||
public string? id { get; set; }
|
||||
public bool hasadd { get; set; }
|
||||
public bool hasitem{ get; set; }
|
||||
public bool hasitem { get; set; }
|
||||
public string? addid { get; set; }
|
||||
public string? triggertype { get; set; }
|
||||
public string? content { get; set; }
|
||||
public int? number { get; set; }
|
||||
public List<CheckPlanTypeOut>? checktypes { get; set; }
|
||||
}
|
||||
public class CheckPlanTypeOut
|
||||
|
||||
@@ -37,5 +37,18 @@ namespace Tnb.QcMgr.Entities.Dto
|
||||
/// 触发条件
|
||||
/// </summary>
|
||||
public EnumTriggerEvent? triggerevent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原先生产数量
|
||||
/// </summary>
|
||||
public int? oldpronum { get; set; }
|
||||
/// <summary>
|
||||
/// 新生产数量
|
||||
/// </summary>
|
||||
public int? newpronum { get; set; }
|
||||
/// <summary>
|
||||
/// 生产次数
|
||||
/// </summary>
|
||||
public int? pronum { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user