wangxinhui
3 天以前 225d11e2ddaa55d1d482201cb4d89c9486cdba69
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Check/Dt_CheckOrder.cs
@@ -21,7 +21,11 @@
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int CheckOrderId { get; set; }
        /// <summary>
        /// ä»“库主键
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")]
        public int WarehouseId { get; set; }
        /// <summary>
        /// æ£€éªŒå•号
        /// </summary>
@@ -30,9 +34,9 @@
        public string CheckOrderNo { get; set; }
        /// <summary>
        /// æ”¶è´§å•号
        /// æ”¶è´§å•号/送检出库单号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "收货单号")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "收货单号/送检出库单号")]
        public string ReceiveOrderNo { get; set; }
        /// <summary>
@@ -48,9 +52,9 @@
        public int AuditStatus { get; set; }
        /// <summary>
        /// æ”¶è´§å•明细行号
        /// æ”¶è´§å•明细行号/送检出库详情行号
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号")]
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号/送检出库详情行号")]
        public int ReceiveDetailRowNo { get; set; }
        /// <summary>
@@ -58,6 +62,18 @@
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "物料编号")]
        public string MaterielCode { get; set; }
        /// <summary>
        /// æ‰¹æ¬¡å·
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "批次号")]
        public string LotNo { get; set; }
        /// <summary>
        /// ç‰©æ–™è§„æ ¼
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "物料规格")]
        public string MaterielSpec { get; set; }
        /// <summary>
        /// åˆæ ¼æ•°é‡
@@ -112,6 +128,21 @@
        [SugarColumn(IsNullable = true, ColumnDescription = "检验上传状态")]
        public int UploadStatus { get; set; }
        /// <summary>
        /// å•位
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "单位")]
        public string Unit { get; set; }
        /// <summary>
        /// æ£€éªŒå•类型
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "检验单类型")]
        public int OrderType { get; set; }
        /// <summary>
        /// æ£€éªŒæ‰˜ç›˜
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "检验托盘")]
        public string OrderPalletCode { get; set; }
        /// <summary>
        /// è´¨æ£€ç»“æžœ
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(Dt_CheckOrderResult.CheckOrderId), nameof(CheckOrderId))]