34 lines
893 B
C#
34 lines
893 B
C#
|
|
using langguanApi.Common.Proxy;
|
|||
|
|
using langguanApi.Extensions.AutoDI;
|
|||
|
|
using langguanApi.Model;
|
|||
|
|
using langguanApi.Model.Entity;
|
|||
|
|
|
|||
|
|
namespace langguanApi.Service
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日志服务
|
|||
|
|
/// </summary>
|
|||
|
|
[ServiceInjection(InjectionType.Transient)]
|
|||
|
|
public class LogService : BaseService<LogEntity>
|
|||
|
|
{
|
|||
|
|
private readonly IConfiguration _configuration;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日志服务
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="config"></param>
|
|||
|
|
public LogService(IConfiguration config) : base(config, nameof(LogEntity))
|
|||
|
|
{
|
|||
|
|
_configuration = config;
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 添加日志
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="log"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public async Task addLog(LogEntity log)
|
|||
|
|
{
|
|||
|
|
await base.CreateAsync(log);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|