| 1234567891011121314151617 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S8;
- /// <summary>
- /// S8 流程节点配置表(供异常看板"流程环节"面板使用)
- /// </summary>
- [SugarTable("ado_s8_process_node", "S8 流程节点配置")]
- public class AdoS8ProcessNode
- {
- [SugarColumn(ColumnName = "code", IsPrimaryKey = true, Length = 64)]
- public string Code { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "name", Length = 128)]
- public string Name { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "sort_no")]
- public int SortNo { get; set; }
- }
|