|
@@ -72,10 +72,48 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
[SugarTable("Grp_ScheduleDetail")]
|
|
[SugarTable("Grp_ScheduleDetail")]
|
|
- public class Grp_ScheduleDetailInfo : EntityBase, ICloneable
|
|
+ [Serializable]
|
|
|
|
+ public class Grp_ScheduleDetailInfo : ICloneable
|
|
{
|
|
{
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = true, IsNullable = false)]
|
|
|
|
+ public int Id { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "创建者Id", IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int CreateUserId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "创建时间", IsNullable = true, ColumnDataType = "DateTime")]
|
|
|
|
+ public DateTime CreateTime { get; set; } = DateTime.Now;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "删除者Id", IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int? DeleteUserId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "删除时间", IsNullable = true, ColumnDataType = "varchar(30)")]
|
|
|
|
+ public string DeleteTime { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
|
+ public string Remark { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "是否删除", IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int IsDel { get; set; }
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -153,6 +191,9 @@ namespace OASystem.Domain.Entities.Groups
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
public int Exception { get; set; }
|
|
public int Exception { get; set; }
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
public object Clone()
|
|
public object Clone()
|
|
{
|
|
{
|
|
return this.MemberwiseClone();
|
|
return this.MemberwiseClone();
|