68 lines
2.0 KiB
C#
68 lines
2.0 KiB
C#
|
|
using Infrastructure;
|
|||
|
|
using Microsoft.AspNetCore.Authorization;
|
|||
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
using OpenAuth.App;
|
|||
|
|
using OpenAuth.App.ServiceApp.DroneSsnydManage;
|
|||
|
|
using OpenAuth.Repository.Domain;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.WebApi.Controllers.ServiceControllers
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 批后监管--项目信息
|
|||
|
|
/// </summary>
|
|||
|
|
[Route("api/[controller]/[action]")]
|
|||
|
|
[ApiController]
|
|||
|
|
public class DroneSsnyController : ControllerBase
|
|||
|
|
{
|
|||
|
|
DroneSsnyApp droneSsnyApp;
|
|||
|
|
public DroneSsnyController(DroneSsnyApp droneSsnyApp)
|
|||
|
|
{
|
|||
|
|
this.droneSsnyApp = droneSsnyApp;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 超期预警
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="pageIndex"></param>
|
|||
|
|
/// <param name="pageSize"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpGet]
|
|||
|
|
public Response<PageInfo<List<DroneSsnyd>>> TimeoutWarning(int page, int limit)
|
|||
|
|
{
|
|||
|
|
var response = new Response<PageInfo<List<DroneSsnyd>>>();
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
response.Result = droneSsnyApp.TimeoutWarning(page, limit);
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
response.Code = 500;
|
|||
|
|
response.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return response;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 超期报警
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="pageIndex"></param>
|
|||
|
|
/// <param name="pageSize"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpGet]
|
|||
|
|
public Response<PageInfo<List<DroneSsnyd>>> TimeOutAlarmList(int page, int limit)
|
|||
|
|
{
|
|||
|
|
var response = new Response<PageInfo<List<DroneSsnyd>>>();
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
response.Result = droneSsnyApp.TimeOutAlarmList(page, limit);
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
response.Code = 500;
|
|||
|
|
response.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return response;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|