You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
409 B

using Entity.DbModel.System;
6 months ago
using HybirdFrameworkCore.Autofac.Attribute;
8 months ago
using SqlSugar;
6 months ago
namespace Repository.System
8 months ago
{
6 months ago
[Scope("SingleInstance")]
public class SysMenuRepository : BaseRepository<SysMenu>
8 months ago
{
6 months ago
private ISqlSugarClient DbBaseClient;
public SysMenuRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
{
DbBaseClient = sqlSugar;
}
8 months ago
}
6 months ago
}