Sys_AuditTemplateNodeUser.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.System
  7. {
  8. /// <summary>
  9. /// 审核模板节点人员表
  10. /// </summary>
  11. [SugarTable(tableName: "Sys_AuditTemplateNodeUser", tableDescription: "审核模板节点人员表")]
  12. public class Sys_AuditTemplateNodeUser : EntityBase
  13. {
  14. /// <summary>
  15. /// 审核节点Id
  16. /// </summary>
  17. [SugarColumn(ColumnDescription = "审核节点Id", IsNullable = true, ColumnDataType = "int")]
  18. public int NodeId { get; set; }
  19. /// <summary>
  20. /// 用户ID
  21. /// </summary>
  22. [SugarColumn(ColumnDescription = "审核人员Id", IsNullable = true, ColumnDataType = "int")]
  23. public int UserId { get; set; }
  24. /// <summary>
  25. /// 用户姓名
  26. /// </summary>
  27. [SugarColumn(ColumnDescription = "用户姓名", IsNullable = true, ColumnDataType = "varchar(30)")]
  28. public string UserName { get; set; }
  29. }
  30. }