You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
523 B
C#
27 lines
523 B
C#
1 year ago
|
|
||
|
//----------SysMenu开始----------
|
||
|
|
||
|
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Collections.Generic;
|
||
|
using SqlSugar;
|
||
|
using Admin.Core.IRepository.ISys;
|
||
|
using Admin.Core.Model.Sys;
|
||
|
|
||
|
namespace Admin.Core.Repository.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 菜单权限表Repository
|
||
|
/// </summary>
|
||
|
public class SysMenuRepository : BaseRepository<SysMenu>, ISysMenuRepository
|
||
|
{
|
||
|
public SysMenuRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//----------SysMenu结束----------
|