helongyang
15 小时以前 dc06f58d8ed537555fd529551180f43a0586ec3f
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Check/Dt_CheckOrder.cs
@@ -10,7 +10,10 @@
namespace WIDESEA_Model.Models
{
    [SugarTable]
    /// <summary>
    /// è´¨æ£€å•
    /// </summary>
    [SugarTable(nameof(Dt_CheckOrder), "质检单")]
    public class Dt_CheckOrder : BaseEntity
    {
        /// <summary>
@@ -18,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>
@@ -27,21 +34,27 @@
        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>
        /// è´¨æ£€å•状态
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "质检单状态")]
        public int CheckOrderStatus { get; set; }
        /// <summary>
        /// å®¡æ‰¹çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "审批状态")]
        public int AuditStatus { get; set; }
        /// <summary>
        /// æ”¶è´§å•明细行号
        /// æ”¶è´§å•明细行号/送检出库详情行号
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号")]
        [SugarColumn(IsNullable = false, ColumnDescription = "收货单明细行号/送检出库详情行号")]
        public int ReceiveDetailRowNo { get; set; }
        /// <summary>
@@ -49,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>
        /// åˆæ ¼æ•°é‡
@@ -92,9 +117,34 @@
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "特采说明")]
        public string DefectedNote { get; set; }
        /// <summary>
        /// æ£€éªŒäºº
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "检验人")]
        public string CheckUserName { get; set; }
        /// <summary>
        /// æ£€éªŒä¸Šä¼ çŠ¶æ€
        /// </summary>
        [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))]
        public List<Dt_CheckOrderResult> Details { get; set; }
    }