rentaiming
2024-07-21 6c696606a420be0b99f820807045b2f21b05266e
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/controller/SlVolumeProductionZyglController.java
@@ -57,13 +57,13 @@
        return R.ok();
    }
    @PostMapping("/getVolumeProductionzZyglnfo")
    @GetMapping("/getVolumeProductionzZyglnfo/{id}")
    @ApiOperation(value = "获取转移管理详情")
    public R<VolumeProductionZyglInfoVO> getVolumeProductionzZyglnfo(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) {
    public R<VolumeProductionZyglInfoVO> getVolumeProductionzZyglnfo(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Long id) {
        return R.ok(slVolumeProductionZyglService.getVolumeProductionzZyglnfo(id));
    }
    @PostMapping("/getVolumeProductionZyglnventory")
    @GetMapping("/getVolumeProductionZyglnventory/{id}")
    @ApiOperation(value = "获取转移管理打印清单")
    public R<VolumeProductionZyglInventoryVO> getVolumeProductionZyglnventory(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) {
        return R.ok(slVolumeProductionZyglService.getVolumeProductionZyglnventory(id));
@@ -71,7 +71,7 @@
    @ApiOperation("取转移管理")
    @DeleteMapping("/{id}")
    @GetMapping("/{id}")
    public R<?> delStoreManagement(
            @ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) {
        SlVolumeProductionZygl byId = slVolumeProductionZyglService.getById(id);
@@ -90,7 +90,7 @@
    }
    @ApiOperation("转移管理入库")
    @DeleteMapping("/zy/{id}")
    @GetMapping("/zy/{id}")
    public R<?> zy(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) {
        slVolumeProductionZyglService.zy(id);
        return R.ok();