1
This commit is contained in:
@@ -4,6 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using NPOI.SS.Formula.PTG;
|
||||
using Tnb.QcMgr.Entities.Enums;
|
||||
|
||||
namespace Tnb.QcMgr.Entities.Dto
|
||||
{
|
||||
@@ -17,4 +18,24 @@ namespace Tnb.QcMgr.Entities.Dto
|
||||
public string[]? trievent { get; set; }
|
||||
public string[]? trieventid { get; set; }
|
||||
}
|
||||
public class TriggerPlanEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料方案编号
|
||||
/// </summary>
|
||||
public string? materialid { get; set; }
|
||||
/// <summary>
|
||||
/// 工序编号
|
||||
/// </summary>
|
||||
public string? processid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工位编号
|
||||
/// </summary>
|
||||
public string? workid { get; set; }
|
||||
/// <summary>
|
||||
/// 触发条件
|
||||
/// </summary>
|
||||
public EnumTriggerEvent? triggerevent { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,4 +12,20 @@ namespace Tnb.QcMgr.Entities.Enums
|
||||
周期触发 = 2,
|
||||
事件触发 = 3
|
||||
}
|
||||
public enum EnumTriggerEvent
|
||||
{
|
||||
首件检换模具 = 1,
|
||||
首件检换物料批号 = 2,
|
||||
首件检换物料编号 = 3,
|
||||
首件检新的生产任务 = 4,
|
||||
首件检生产任务暂停 = 5,
|
||||
出厂检按入厂频次 = 6,
|
||||
入厂检按物料频次 = 7,
|
||||
入厂检按物料编号 = 8,
|
||||
生产检定量 = 9,
|
||||
生产检定码 = 10,
|
||||
生产检产出频次 = 11,
|
||||
生产检固定次数 = 12,
|
||||
生产检按流转卡 = 13
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user