服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-02-22 fb726bc28268c7efb73629f6ae12b25232a18538
Tiger.Model.Net/Entitys/MES/ParameterEntity/PositionParameter.cs
@@ -46,9 +46,9 @@
        /// </summary>
        public string DFT_CODE { get; set; }
        /// <summary>
        /// 当前操作需要提交的选项
        /// 当前操作的行为的变量字典,如果是不是行为,否则留空
        /// </summary>
        public Dictionary<string, string> Options { get; set; } = new Dictionary<string, string>();
        public Dictionary<string, string> ActionDic { get; set; } = new Dictionary<string, string>();
        /// <summary>
        /// 当前操作需要提交的数据
        /// </summary>
@@ -73,6 +73,10 @@
        /// 当前操作的行为的类名,如果是不是行为,否则留空
        /// </summary>
        public string ActionType { get; set; }
        /// <summary>
        /// 当前操作的行为的变量字典,如果是不是行为,否则留空
        /// </summary>
        public Dictionary<string, string> ActionDic { get; set; }
        /// <summary>
        /// 下一个操作的工步ID
        /// </summary>
@@ -332,17 +336,8 @@
    public class ShipingInfo
    {
        public bool IsPrintCustomerLabel { get; set; }
        public int OldShipQty { get; set; }
        public int ShipQty { get; set; }
    }
    /// <summary>
    /// 提交前检查输出参数
    /// </summary>
    public class CheckCodeOutput
    {
        public MES_POSITION Position { get; set; }
        public BIZ_MES_WO WorkOrder { get; set; }
        public BAS_DEFECT Defect { get; set; }
    }
}