| | |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core.Utilities; |
| | | using WIDESEA_Entity.DomainModels; |
| | | using WIDESEA_Entity.DomainModels.Mes; |
| | | using WIDESEA_WMS; |
| | | |
| | |
| | | return new ToMesServer().AddToFloat3(request); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å¤åç§»åº |
| | | /// </summary> |
| | | /// <param name="request"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("agvTransferList")] |
| | | public WebResponseContent agvTransferList([FromBody] SaveModel saveModel) |
| | | { |
| | | return new ToMesServer().agvTransferList(saveModel); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// å¤åå
¥åº(æ£æµä¸æ) |
| | | /// </summary> |
| | | /// <param name="request"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("OutsourceInbound")] |
| | | public WebResponseContent OutsourceInbound([FromBody] SaveModel saveModel) |
| | | { |
| | | return new ToMesServer().OutsourceInbound(saveModel); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 空ç |
| | | /// </summary> |
| | | /// <param name="request"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("SendEpmtyTask")] |
| | | public WebResponseContent SendEpmtyTask([FromBody] SaveModel saveModel) |
| | | { |
| | | return new ToMesServer().SendEpmtyTask(saveModel); |
| | | } |
| | | |
| | | } |
| | | } |