Grp_GroupsTaskAssignment.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using OASystem.Domain.Dtos;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Security.Cryptography;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OASystem.Domain.Entities.Groups
  9. {
  10. /// <summary>
  11. /// 团组任务分配表
  12. /// </summary>
  13. [SugarTable("Grp_GroupsTaskAssignment")]
  14. public class Grp_GroupsTaskAssignment:EntityBase
  15. {
  16. /// <summary>
  17. /// 团组外键编号
  18. /// </summary>
  19. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  20. public int DIId { get; set; }
  21. /// <summary>
  22. /// 配置任务(设置数据外键编号)
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  25. public int CTId { get; set; }
  26. /// <summary>
  27. /// 员工外键编号
  28. /// </summary>
  29. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  30. public int UId { get; set; }
  31. /// <summary>
  32. /// 启用标识
  33. /// 默认启用 1
  34. /// </summary>
  35. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  36. public int IsEnable { get; set; } = 1;
  37. }
  38. }