服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-03-11 e64afded54da08741c80dc308d0bdfc9f382dfa2
Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
@@ -27,6 +27,10 @@
        /// </summary>
        public string SN { get; set; }
        /// <summary>
        /// 料号
        /// </summary>
        public string ItemCode { get; set; }
        /// <summary>
        /// 当前操作需要提交的选项
        /// </summary>
        public Dictionary<string, string> Options { get; set; } = new Dictionary<string, string>();
@@ -70,7 +74,7 @@
    public class RePrintLabelBase
    {
        public string BatchNo { get; set; }
        public decimal BatchQty { get; set; }
        public double BatchQty { get; set; }
        public List<RePrintLabelEntity> SnList { get; set; }=new List<RePrintLabelEntity>();
    }
@@ -83,6 +87,6 @@
    {
        public string ID { get; set; }
        public string SN { get; set; }
        public decimal Qty { get; set; }
        public double Qty { get; set; }
    }
}