123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- 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; }
- }
-
-
-
- [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; }
- }
-
-
-
- [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; }
- }
- }
|