12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.PersonnelModule
- {
-
-
-
-
- [SugarTable("Pm_TaskRelevanceUser")]
- public class Pm_TaskRelevanceUser: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int TAId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int UserId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? BeginTime { get; set; } = "";
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? OverTime { get; set; } = "";
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public TaskerEnum TaskStatus { get; set; } = TaskerEnum.NotStarted;
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? Cause { get; set; } = "";
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Score { get; set; } = 0;
- }
- }
|