vue动态路由测试

This commit is contained in:
陈淳
2022-09-08 18:18:34 +08:00
parent 49330536c7
commit 23dc82f042
5 changed files with 65 additions and 15 deletions

View File

@@ -8,10 +8,10 @@ namespace Yi.Framework.Common.Models
{
public interface ITreeModel<T>
{
public int id { get; set; }
public int parentId { get; set; }
public int sort { get; set; }
public int Id { get; set; }
public int ParentId { get; set; }
public int Sort { get; set; }
public IList<T> children { get; set; }
public IList<T> Children { get; set; }
}
}