Sys_AuditFlow.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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_AuditFlow", tableDescription: "审核流程表")]
  12. public class Sys_AuditFlow : EntityBase
  13. {
  14. /// <summary>
  15. /// 业务ID(领用单ID)
  16. /// </summary>
  17. [SugarColumn(ColumnDescription = "业务ID(领用单ID)", IsNullable = true, ColumnDataType = "int")]
  18. public int BusinessId { get; set; }
  19. /// <summary>
  20. /// 业务类型(1-物资领用)
  21. /// </summary>
  22. [SugarColumn(ColumnDescription = "业务类型(1-物资领用)", IsNullable = true, ColumnDataType = "int")]
  23. public int BusinessType { get; set; }
  24. /// <summary>
  25. /// 模板ID
  26. /// </summary>
  27. [SugarColumn(ColumnDescription = "模板ID", IsNullable = true, ColumnDataType = "int")]
  28. public int TemplateId { get; set; }
  29. /// <summary>
  30. /// 当前节点ID
  31. /// </summary>
  32. [SugarColumn(ColumnDescription = "当前节点ID", IsNullable = true, ColumnDataType = "int")]
  33. public int CurrentNodeId { get; set; }
  34. /// <summary>
  35. /// 状态(0-未开始,1-审核中,2-已完成,3-已拒绝)
  36. /// </summary>
  37. [SugarColumn(ColumnDescription = "状态(0-未开始,1-审核中,2-已完成,3-已拒绝)", IsNullable = true, ColumnDataType = "int")]
  38. public int Status { get; set; }
  39. }
  40. }