1
heshaofeng
2026-03-19 557ee5cb94b1ad73a5b9bb8a11d43d1bb12274fc
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_Model/Models/Inbound/Dt_InboundOrderDetail.cs
@@ -1,6 +1,7 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -65,7 +66,7 @@
        /// <summary>
        /// è®¢å•明细状态
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "订单明细状态")]
        [SugarColumn(IsNullable = false, ColumnDescription = "订单明细状态", DefaultValue = "0")]
        public int OrderDetailStatus { get; set; }
        /// <summary>
@@ -77,14 +78,14 @@
        /// <summary>
        /// æ”¶è´§å•明细行号
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号")]
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号", DefaultValue = "0")]
        public int RowNo { get; set; }
        /// <summary>
        /// è¡Œå·
        /// é»˜è®¤å€¼:
        ///</summary>
        [SugarColumn(ColumnName = "lineNo", ColumnDescription = "行号")]
        [SugarColumn(ColumnName = "lineNo", ColumnDescription = "行号", DefaultValue = "0")]
        public string? lineNo { get; set; }
        /// <summary>
@@ -98,7 +99,7 @@
        /// ä»“库
        /// é»˜è®¤å€¼:
        ///</summary>
        [SugarColumn(ColumnName = "warehouseCode", ColumnDescription = "仓库")]
        [SugarColumn(ColumnName = "warehouseCode", ColumnDescription = "仓库", DefaultValue = "")]
        public string? WarehouseCode { get; set; }
        /// <summary>
@@ -112,7 +113,7 @@
        /// å¤–箱条码
        /// é»˜è®¤å€¼:
        ///</summary>
        [SugarColumn(ColumnName = "outBoxbarcodes", ColumnDescription = "外箱条码")]
        [SugarColumn(ColumnName = "outBoxbarcodes", ColumnDescription = "外箱条码", DefaultValue = "")]
        public string? OutBoxbarcodes { get; set; }
        /// <summary>
@@ -130,7 +131,7 @@
        public string BarcodeUnit { get; set; } = null!;
        /// <summary>
        /// å›žä¼ MES
        /// å›žä¼ MES 0未回传 1已回传 2回传失败
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "回传MES")]
        public int ReturnToMESStatus { get; set; } = 0;
@@ -140,5 +141,23 @@
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string Remark { get; set; }
        /// <summary>
        /// è™šæ‹Ÿå‡ºå…¥åº“数量
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "虚拟出入库数量")]
        public decimal NoStockOutQty { get; set; }
        /// <summary>
        /// è°ƒæ‹¨å•过期时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "过期日期")]
        public DateTime ValidDate { get; set; }
        /// <summary>
        /// æ‰˜ç›˜ç¼–号
        /// </summary>
        [SugarColumn(IsIgnore = true, IsNullable = true)]
        public string Pallet { get; set; }
    }
}