服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-08-22 f55c2a5b2f1c9d3aad310766b8281f4b7f7c1ded
Tiger.Model.Net/Entitys/MES/ParameterEntity/PositionParameter.cs
@@ -158,6 +158,8 @@
        public string RULE_CODE { get; set; }
        public string RULE_NAME { get; set; }
        public WipPkgItem Item { get; set; }
        public bool IsWeighed { get; set; } = false;
        public WeightInfo WeightInfo { get; set; }
        public bool IsFinished => Item.IsFinished;
    }
@@ -235,8 +237,8 @@
    /// </summary>
    public class OperInfo
    {
        public string NextNode { get; set; }
        public string CurNode { get; set; }
        public int InputQty { get; set; }
        public string NextNode { get; set; } = "   —   ";
        public string CurNode { get; set; } = "   —   ";
        public int InputQty { get; set; } = 0;
    }
}