chenlu
2024-12-05 a8557c74bba5f4f7ff9b2f3c9d84db5d24bb43cd
north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
@@ -385,4 +385,16 @@
    }
    @ApiOperation("修改工艺流程")
    @PostMapping("/updateProcess/{processId}/{technologyNumber}/{orderId}/{process}")
    public Result updateProcess(
            @PathVariable String processId,
            @PathVariable String technologyNumber,
            @PathVariable String orderId,
            @PathVariable String process,
            @RequestBody Map<String, Object> object
    ) {
        return Result.seccess(flowCardService.updateProcessSv(processId,technologyNumber,orderId,process,object));
    }
}