AdoS8ProcessNode.cs 557 B

1234567891011121314151617
  1. namespace Admin.NET.Plugin.AiDOP.Entity.S8;
  2. /// <summary>
  3. /// S8 流程节点配置表(供异常看板"流程环节"面板使用)
  4. /// </summary>
  5. [SugarTable("ado_s8_process_node", "S8 流程节点配置")]
  6. public class AdoS8ProcessNode
  7. {
  8. [SugarColumn(ColumnName = "code", IsPrimaryKey = true, Length = 64)]
  9. public string Code { get; set; } = string.Empty;
  10. [SugarColumn(ColumnName = "name", Length = 128)]
  11. public string Name { get; set; } = string.Empty;
  12. [SugarColumn(ColumnName = "sort_no")]
  13. public int SortNo { get; set; }
  14. }