移动系统liao
2025-03-20 63eb28a9ba7aa9c549bc99f9c68d0a4c051453ba
cylsg/cylsg.Core/BaseModelBase.cs
@@ -17,25 +17,25 @@
        /// 创建时间
        /// </summary>
        [Display(Name = "创建时间 ")]
        [SugarColumn(ColumnDescription = "创建时间 ")]
        [SugarColumn(ColumnDescription = "创建时间 " , IsNullable = true)]
        public DateTime? CreateTime { get; set; }
        /// <summary>
        /// 创建人
        /// </summary>
        [Display(Name = "创建人 ")]
        [SugarColumn(ColumnDescription = "创建人 ", ColumnDataType = "nvarchar(100)")]
        [SugarColumn(ColumnDescription = "创建人 ", ColumnDataType = "nvarchar(100)", IsNullable = true)]
        public string CreateBy { get; set; }
        /// <summary>
        /// 修改时间
        /// </summary>
        [Display(Name = "修改时间 ")]
        [SugarColumn(ColumnDescription = "修改时间 ")]
        [SugarColumn(ColumnDescription = "修改时间 ", IsNullable = true)]
        public DateTime? UpDataTime { get; set; }
        /// <summary>
        /// 修改人
        /// </summary>
        [Display(Name = "修改人 ")]
        [SugarColumn(ColumnDescription = "修改人 ", ColumnDataType = "nvarchar(100)")]
        [SugarColumn(ColumnDescription = "修改人 ", ColumnDataType = "nvarchar(100)", IsNullable = true)]
        public string UpDataBy { get; set; }