fix:修复菜单排序问题

This commit is contained in:
橙子
2023-04-19 22:54:33 +08:00
parent 8f143be4b0
commit ae5db16d67
2 changed files with 3 additions and 0 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; }
}
}