FileMonitor
continue 2024-11-14 10:31:17 +08:00
parent 922027b219
commit 91109c6f68
1 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,5 @@
using Microsoft.Extensions.Configuration;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using OpenAuth.App.BaseApp.Base;
using OpenAuth.App.Interface;
@ -20,8 +21,8 @@ namespace OpenAuth.App.ServiceApp.DroneCaseInfo
private ILogger<DroneCaseinfoApp> _logger;
public DroneCaseinfoApp(
ISugarUnitOfWork<SugarDbContext> unitWork,
ISimpleClient<DroneCaseinfo> repository,
ISugarUnitOfWork<SugarDbContext> unitWork,
ISimpleClient<DroneCaseinfo> repository,
IAuth auth,
ILogger<DroneCaseinfoApp> logger) : base(unitWork, repository, auth)
{
@ -270,6 +271,12 @@ namespace OpenAuth.App.ServiceApp.DroneCaseInfo
//}
[HttpGet]
public string Test(string txt)
{
return txt;
}
///// <summary>
///// 上报案件
///// </summary>