1
yangpeixing
2026-03-02 4a1765ea61fb8706bddbf90b91b310e2ce0e9f7d
WMS/WIDESEA_WMSServer/WIDESEA_Common/HouseInbound.cs
@@ -31,8 +31,11 @@
        /// <summary>
        /// 出入库类型
        /// </summary>
        public int InoutType { get; set; }
        public decimal InoutType { get; set; }
        /// <summary>
        /// 创建者
        /// </summary>
        public string CreateBy { get; set; }
        /// <summary>
        /// 推单系统
        /// </summary>
@@ -66,6 +69,11 @@
        /// 物料规格
        /// </summary>
        public string MaterieSpec { get; set; }
        /// <summary>
        /// 物料类型
        /// </summary>
        public int MaterielType { get; set; }
        /// <summary>
        /// 批次号
        /// </summary>
@@ -78,13 +86,17 @@
        /// 供应商批次
        /// </summary>
        public string SupplierBatch { get; set; }
        /// <summary>
        /// WMS源库位
        /// </summary>
        public string OrinalLocation { get; set; }
        public List<BoxList> BoxList { get; set; }
    }
    public class BoxList
    {
        public float BoxId { get; set; }
        public double BoxId { get; set; }
        public string BoxCode { get; set; }
@@ -92,10 +104,14 @@
        public string PartNum { get; set; }
        public float JobId { get; set; }
        public decimal JobId { get; set; }
        public float QtyOfpcs { get; set; }
        public decimal QtyOfpcs { get; set; }
        public float QtyOfxout { get; set; }
        public decimal QtyOfxout { get; set; }
        public string LPNNO { get; set; }
        public string OrinalLocation { get; set; }
    }
}