1
Administrator
2025-01-24 45d3d62c44fc1169f997dfd0411832d8e9459f0c
WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Inbound/Dt_InboundOrderDetail_Hty.cs
@@ -39,7 +39,7 @@
        [SugarColumn(IsNullable = false, ColumnDescription = "订单明细状态")]
        public int OrderDetailStatus {  get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        [SugarColumn(IsNullable = false, ColumnDescription = "备注")]
        public string Remark {  get; set; }
        [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "源主键")]
        public int SourceId { get; set; }
@@ -52,7 +52,7 @@
        [ImporterHeader(Name = "创建人")]
        [ExporterHeader(DisplayName = "创建人")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "创建人")]
        public string Creater { get; set; }
        public string Creater { get; set; } = "WMS";
        /// <summary>
        /// 创建时间
@@ -68,7 +68,7 @@
        [ImporterHeader(Name = "修改人")]
        [ExporterHeader(DisplayName = "修改人")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "修改人")]
        public string Modifier { get; set; }
        public string Modifier { get; set; } = "WMS";
        /// <summary>
        /// 修改日期
@@ -76,6 +76,6 @@
        [ImporterHeader(Name = "修改日期")]
        [ExporterHeader(DisplayName = "修改日期")]
        [SugarColumn(IsNullable = true, ColumnDescription = "修改日期")]
        public DateTime? ModifyDate { get; set; }
        public DateTime? ModifyDate { get; set; } = DateTime.Now;
    }
}