|
@@ -11,11 +11,6 @@
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = true)]
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
public int Id { get; set; }
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- [SugarColumn(ColumnDescription = "是否删除")]
|
|
|
|
- public bool IsDeleted { get; set; }
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "创建者Id", IsNullable = true)]
|
|
[SugarColumn(ColumnDescription = "创建者Id", IsNullable = true)]
|
|
@@ -25,6 +20,12 @@
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "创建时间")]
|
|
[SugarColumn(ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; } = DateTime.Now;
|
|
public DateTime CreateTime { get; set; } = DateTime.Now;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "是否删除")]
|
|
|
|
+ public bool IsDel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -34,7 +35,7 @@
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "删除时间")]
|
|
[SugarColumn(ColumnDescription = "删除时间")]
|
|
- public DateTime DeleteTime { get; set; }
|
|
+ public string DeleteTime { get; set; }
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|