ApprovalFlow.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using Admin.NET.Core;
  2. namespace Admin.NET.Plugin.Flow.Entity;
  3. /// <summary>
  4. /// 审批流信息表
  5. /// </summary>
  6. [SugarTable("ApprovalFlow", "审批流信息表")]
  7. public class ApprovalFlow : EntityBaseData
  8. {
  9. /// <summary>
  10. /// 编号
  11. /// </summary>
  12. [SugarColumn(ColumnName = "Code", ColumnDescription = "编号", Length = 32)]
  13. public string? Code { get; set; }
  14. /// <summary>
  15. /// 名称
  16. /// </summary>
  17. [SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)]
  18. public string? Name { get; set; }
  19. /// <summary>
  20. /// 表单
  21. /// </summary>
  22. [SugarColumn(ColumnName = "FormJson", ColumnDescription = "表单", Length = 0)]
  23. public string? FormJson { get; set; }
  24. /// <summary>
  25. /// 流程
  26. /// </summary>
  27. [SugarColumn(ColumnName = "FlowJson", ColumnDescription = "流程", Length = 0)]
  28. public string? FlowJson { get; set; }
  29. /// <summary>
  30. /// 状态
  31. /// </summary>
  32. [SugarColumn(ColumnName = "Status", ColumnDescription = "状态")]
  33. public int? Status { get; set; }
  34. /// <summary>
  35. /// 备注
  36. /// </summary>
  37. [SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 255)]
  38. public string? Remark { get; set; }
  39. }