对接ruoyi接口
用户、角色、菜单查询部分
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user