服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-10 40df5d91f800bb8b7be2638c13b4f9292d461221
Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
@@ -66,4 +66,23 @@
    {
        public bool IsItemCodeList { get; set; }
    }
    public class RePrintLabelBase
    {
        public string BatchNo { 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 double Qty { get; set; }
    }
}