123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.PersonnelModule
- {
-
-
-
-
- [SugarTable("Pm_TaskAllocation")]
- public class Pm_TaskAllocation: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DepId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? TaskName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string? TaskContent { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int TaskPriority { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? PredictBeginTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? PredictEndTime { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Status { get; set; } = 0;
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsComplete { get; set; } = 0;
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsIntoPerformance { get; set; } = 0;
- }
- }
|