服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-18 406ac5eb58f06bde155443a34c76fbf187759808
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>();
@@ -34,6 +38,12 @@
        /// 当前操作需要提交的数据
        /// </summary>
        public string Data { get; set; }
    }
    public class BaseInputWithPage : BaseInput
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public int total { get; set; }
    }
    public class BasePageInput
@@ -70,14 +80,19 @@
    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>();
    }
    public class PrintSemiProdLabelEntity: RePrintLabelBase
    {
    }
    public class RePrintLabelEntity
    {
        public string ID { get; set; }
        public string SN { get; set; }
        public decimal Qty { get; set; }
        public double Qty { get; set; }
    }
}