对接ruoyi接口

用户、角色、菜单查询部分
This commit is contained in:
陈淳
2022-09-06 19:32:32 +08:00
parent cc26bd09e6
commit e4da8d4f15
20 changed files with 221 additions and 25 deletions

View File

@@ -70,14 +70,29 @@ namespace Yi.Framework.Model.Models
[SugarColumn(ColumnName="TenantId" )]
public long? TenantId { get; set; }
/// <summary>
///
/// 菜单图标
///</summary>
[SugarColumn(ColumnName="MenuIcon" )]
public string MenuIcon { get; set; }
/// <summary>
///
/// 菜单组件路由
///</summary>
[SugarColumn(ColumnName="Router" )]
public string Router { get; set; }
/// <summary>
/// 是否为外部链接
///</summary>
[SugarColumn(ColumnName="IsLink" )]
public bool? IsLink { get; set; }
/// <summary>
/// 是否缓存
///</summary>
[SugarColumn(ColumnName="IsCache" )]
public bool? IsCache { get; set; }
/// <summary>
/// 是否显示
///</summary>
[SugarColumn(ColumnName="IsShow" )]
public bool? IsShow { get; set; }
}
}