Files
Yi.Framework/Yi.Furion.Rbac/Yi.Furion.Rbac.Application/System/Services/SystemService.cs
2023-04-12 22:52:09 +08:00

17 lines
399 B
C#

using SqlSugar;
namespace Yi.Furion.Rbac.Application;
public class SystemService : ISystemService, ITransient
{
private readonly ISqlSugarClient _sqlSugarClient;
public SystemService(ISqlSugarClient sqlSugarClient)
{
_sqlSugarClient=sqlSugarClient;
}
public string GetDescription()
{
return "让 .NET 开发更简单,更通用,更流行。";
}
}