| | |
| | | using HH.WCS.Mobox3.AnGang.Debug; |
| | | using static HH.WCS.Mobox3.AnGang.Dtos.Request.DebugRequest; |
| | | using static HH.WCS.Mobox3.AnGang.Dtos.Response.DebugResponse; |
| | | using static HH.WCS.Mobox3.AnGang.Models.DebugModel; |
| | | |
| | | namespace HH.WCS.Mobox3.AnGang.Controllers |
| | | { |
| | |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | | [Route("InsertLocCntrCg")] |
| | | public string InsertLocCntrCg() { |
| | | return DebugService.InsertLocCntrCg(); |
| | | public string InsertLocCntrCg(LocCntrCg model) { |
| | | return DebugService.InsertLocCntrCg(model); |
| | | } |
| | | |
| | | [HttpPost] |
| | | [Route("SetTaskWeight")] |
| | | public string SetTaskWeight(SetTaskWeightInfo model) { |
| | | return DebugService.SetTaskWeight(model); |
| | | } |
| | | } |
| | | } |