| | |
| | | import com.zy.common.web.BaseController; |
| | | import com.zy.entity.RcsReporterTask; |
| | | import com.zy.entity.RcsReturn; |
| | | import com.zy.entity.ReporterEqpt; |
| | | import com.zy.service.RcsService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | return rcsService.reporterTask(param); |
| | | } |
| | | |
| | | // 请求外设接口-WCS 放货请求 |
| | | @PostMapping("/api/robot/reporter/eqpt") |
| | | public RcsReturn reporterEqpt(@RequestBody ReporterEqpt param){ |
| | | log.info("agv放货请求:{}",JSONObject.toJSONString(param)); |
| | | return rcsService.reporterEqpt(param); |
| | | } |
| | | |
| | | } |