FileMonitor
parent
922027b219
commit
91109c6f68
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue