pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepCtrl.java
@@ -75,8 +75,21 @@ return BaseResponseUtils.buildSuccess(true); } } /** * 无任务工作中的其他页面 * @param vo * @return */ @PostMapping(path = "otherWork") public BaseResponse<Boolean> otherWork(QueryVo vo) { log.info("AssemblyStepCtrl.otherWork():" + vo); int count = sv.otherWork(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } @PostMapping(path = "repair") public BaseResponse repair(@RequestBody @Valid QueryVo vo) {