|
@@ -0,0 +1,163 @@
|
|
|
|
+using OASystem.Domain.Enums;
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Text;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+
|
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarTable("Grp_Schedule")]
|
|
|
|
+ public class Grp_ScheduleInfo : EntityBase
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int DiId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public GrpSchedulePrimaryStepEnum PrimaryStep { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int DetailStep { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime ExpectBeginDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime ExpectEndDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime RealBeginDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime RealEndDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Leader { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Exception { get; set; }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarTable("Grp_ScheduleDetail")]
|
|
|
|
+ public class Grp_ScheduleDetailInfo : EntityBase
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ScheduleId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Step { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ParentStep { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Duty { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime ExpectBeginDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime ExpectEndDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime RealBeginDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
|
|
|
|
+ public DateTime RealEndDt { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Exception { get; set; }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarTable("Grp_SchedulePerson")]
|
|
|
|
+ public class Grp_SchedulePersonInfo : EntityBase
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int ScheduleId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int SysUserId { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
|
+ public string SysUserName { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
|
+ public string JobStr { get; set; }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+}
|