1
heshaofeng
2026-01-27 7ce2de3024356ebb38f6f939d473fac1307c8c2b
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_DTO/Inbound/InboundOrderAddDTO.cs
@@ -1,4 +1,5 @@
锘縰sing System;
锘縰sing Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -110,6 +111,8 @@
        public string warehouseCode { get; set; }
        public string remark { get; set; }
        public List<BarcodesModel> barcodes { get; set; }
    }
@@ -155,6 +158,9 @@
        public int operationType { get; set; }
        [JsonProperty("operator")]
        public string Operator { get; set; }
        /// <summary>
        /// 
        /// </summary>
@@ -184,5 +190,15 @@
        public string unit { get; set; }
        public string warehouseCode { get; set; }
        public List<FeedbackBarcodesModel> barcodes { get; set; }
    }
    public class FeedbackBarcodesModel
    {
        public string barcode { get; set; }
        public decimal qty { get; set; }
    }
}