服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-02-22 fb726bc28268c7efb73629f6ae12b25232a18538
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 decimal 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; }
    }
}