pang.jiabao
13 小时以前 15161de49e7f35e2fc926a20577905621f30554c
src/main/java/com/zy/controller/RcsController.java
@@ -4,6 +4,7 @@
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;
@@ -27,4 +28,11 @@
        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);
    }
}