using OASystem.Domain.Dtos; using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组任务分配表 /// [SugarTable("Grp_GroupsTaskAssignment")] public class Grp_GroupsTaskAssignment:EntityBase { /// /// 团组外键编号 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DIId { get; set; } /// /// 配置任务(设置数据外键编号) /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CTId { get; set; } /// /// 员工外键编号 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int UId { get; set; } /// /// 启用标识 /// 默认启用 1 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsEnable { get; set; } = 1; } }