服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-08-02 d34d9c35ba844da8b805993bd4c69b0253694fc0
Tiger.Model.Net/Entitys/MES/ParameterEntity/PositionParameter.cs
@@ -54,21 +54,25 @@
        /// </summary>
        public bool IsFinished { get; set; } = false;
        /// <summary>
        /// 当前操作的工单
        /// 当前操作的工单对象
        /// </summary>
        public string CurWO { get; set; }
        public BIZ_MES_WO CurWO { get; set; }
        /// <summary>
        /// 当前操作的工单批次
        /// 当前操作的工单批次对象
        /// </summary>
        public string CurBatch { get; set; }
        public BIZ_MES_WO_BATCH CurBatch { get; set; }
        /// <summary>
        /// 当前操作的节点名称
        /// </summary>
        public string CurNode { get; set; }
        public string NodeName { get; set; }
        /// <summary>
        /// 如果当前节点为工序行为节点,则行为定义编码,否则留空
        /// 当前操作的行为名称,如果是不是行为,否则留空
        /// </summary>
        public string StepActCode { get; set; }
        public string ActionName { get; set; }
        /// <summary>
        /// 当前操作的行为的类名,如果是不是行为,否则留空
        /// </summary>
        public string ActionType { get; set; }
        /// <summary>
        /// 下一个操作的工步ID
        /// </summary>
@@ -77,6 +81,7 @@
        /// 当前操作返回的数据
        /// </summary>
        public object Data { get; set; }
    }
    public class DefectOutput