fix:修复菜单排序问题

This commit is contained in:
陈淳
2023-09-25 18:16:20 +08:00
parent 04278f553e
commit 0aa6443a20
3 changed files with 4 additions and 1 deletions

View File

@@ -24,5 +24,6 @@ namespace Yi.Furion.Core.Rbac.Dtos.Menu
public string? Remark { get; set; }
public string? Component { get; set; }
public string? Query { get; set; }
public int OrderNum { get; set; }
}
}

View File

@@ -21,6 +21,8 @@ namespace Yi.Furion.Core.Rbac.Dtos.Menu
public string? Remark { get; set; }
public string? Component { get; set; }
public string? Query { get; set; }
public int OrderNum { get; set; }
//public List<MenuEntity>? Children { get; set; }
}
}