|
@@ -2,6 +2,7 @@
|
|
using IMCS.CCS.Models;
|
|
using IMCS.CCS.Models;
|
|
using IMCS.CCS.Models.vo;
|
|
using IMCS.CCS.Models.vo;
|
|
using IMCS.CCS.Services;
|
|
using IMCS.CCS.Services;
|
|
|
|
+using IMCS_CCS.Model.vo;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
@@ -264,6 +265,17 @@ namespace IMCS.CCS.Controllers
|
|
return await _httpRequestService.UpdateDeviceState(req);
|
|
return await _httpRequestService.UpdateDeviceState(req);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 获取任务回调列表: POST: api/GetCallBackList
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <returns></returns>
|
|
|
|
+ [Route("api/GetCallBackList")]
|
|
|
|
+ [HttpPost]
|
|
|
|
+ public async Task<List<TaskCallback>> GetCallBackListByCondition(RequestCallBackData vo)
|
|
|
|
+ {
|
|
|
|
+ return await _httpRequestService.GetCallBackListByCondition(vo);
|
|
|
|
+ }
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 刀具接口列表: POST: api/GetTools
|
|
/// 刀具接口列表: POST: api/GetTools
|
|
/// </summary>
|
|
/// </summary>
|