1
heshaofeng
2026-03-25 37454e625df68d40897112b2e8c2e3cf4d7163e3
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_DTO/Allocate/AllocateDto.cs
@@ -4,6 +4,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_DTO.Inbound;
namespace WIDESEA_DTO.Allocate
{
@@ -24,7 +25,7 @@
        /// è¯·æ±‚æ—¶é—´
        /// </summary>
        [JsonProperty("reqTime")]
        public DateTime ReqTime { get; set; }
        public string ReqTime { get; set; }
        /// <summary>
        /// è®¢å•编号
@@ -38,17 +39,26 @@
        [JsonProperty("business_type")]
        public string BusinessType { get; set; }
        [JsonProperty("fromWarehouse")]
        public string fromWarehouse { get; set; }
        [JsonProperty("toWarehouse")]
        public string toWarehouse { get; set; }
        /// <summary>
        /// æ˜¯å¦åˆ†æ‰¹
        /// </summary>
        [JsonProperty("isBatch")]
        public bool IsBatch { get; set; }
        public int IsBatch { get; set; }
        /// <summary>
        /// åŽ‚åŒºä»£ç 
        /// </summary>
        [JsonProperty("factoryArea")]
        public string FactoryArea { get; set; }
        [JsonProperty("operator")]
        public string Operator { get; set; }
        /// <summary>
        /// æ“ä½œç±»åž‹
@@ -106,6 +116,7 @@
        public List<BarcodeInfo>? Barcodes { get; set; }
    }
    /// <summary>
    /// æ¡ç ä¿¡æ¯
    /// </summary>
@@ -119,10 +130,19 @@
        public string Barcode { get; set; }
        /// <summary>
        /// å¤–箱条码
        /// </summary>
        [JsonProperty("boxSN")]
        public string BoxSN { get; set; }
        /// <summary>
        /// æ‰¹æ¬¡å·
        /// </summary>
        [JsonProperty("batchNo")]
        public string BatchNo { get; set; }
        [JsonProperty("supplyCode")]
        public string SupplyCode { get; set; }
        /// <summary>
        /// æ•°é‡
@@ -135,5 +155,9 @@
        /// </summary>
        [JsonProperty("unit")]
        public string Unit { get; set; }
        public DateTime validDate { get; set; }
    }
}