| | |
| | | import com.zy.asrs.entity.rcs.RcsReturn; |
| | | import com.zy.asrs.service.RcsService; |
| | | import com.zy.common.web.BaseController; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | import javax.annotation.Resource; |
| | | |
| | | @RestController |
| | | @Slf4j |
| | | public class RcsController extends BaseController { |
| | | |
| | | @Resource |
| | |
| | | // 反馈任务执行结果 |
| | | @PostMapping("/api/robot/reporter/task") |
| | | public RcsReturn reporterTask(@RequestBody RcsReporterTask param){ |
| | | |
| | | log.info("agv任务执行反馈请求:{}",param.toString()); |
| | | return rcsService.reporterTask(param); |
| | | } |
| | | |