管理运营
This commit is contained in:
39
ZR.Admin.WebApi/Controllers/mes/op/OperationController.cs
Normal file
39
ZR.Admin.WebApi/Controllers/mes/op/OperationController.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using ZR.Admin.WebApi.Extensions;
|
||||
using ZR.Model.mes.md;
|
||||
using ZR.Model.MES.op.DTO;
|
||||
using ZR.Model.MES.op.ZR.Model.mes.md;
|
||||
using ZR.Service.mes.md;
|
||||
using ZR.Service.MES.md;
|
||||
using ZR.Service.MES.md.IService;
|
||||
using ZR.Service.MES.op;
|
||||
using ZR.Service.MES.op.IService;
|
||||
using static System.Runtime.InteropServices.JavaScript.JSType;
|
||||
|
||||
namespace ZR.Admin.WebApi.Controllers.MES.md
|
||||
{
|
||||
[Route("mes/op/operation")]
|
||||
public class OperationController : BaseController
|
||||
{
|
||||
IOperationService operationService;
|
||||
public OperationController(IOperationService operationService) {
|
||||
this.operationService= operationService;
|
||||
}
|
||||
/// <summary>
|
||||
/// 获取所有统计信息
|
||||
/// </summary>
|
||||
/// <param name="workshopid">车间id</param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("getOperation")]
|
||||
public IActionResult GetActionResult(string WorkerID = "1")
|
||||
{
|
||||
List<OpStatisticsDTO> OpStatisticsList= operationService.GetAllData(WorkerID);
|
||||
|
||||
return ToResponse(new ApiResult(200, "success", OpStatisticsList));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user