| | |
| | | |
| | | @PostMapping("/codeInfo/{id}") |
| | | @ApiOperation(value = "获取二维码样式") |
| | | public R<List<QRCodeVO>> codeInfo(@ApiParam(name = "id", value = "入库管理id", required = true) @PathVariable("id") Long id){ |
| | | slVolumeProductionRkService.codeInfo(id); |
| | | return R.ok(); |
| | | public R<List<QRCodeVO>> codeInfo(@ApiParam(name = "id", value = "入库管理id", required = true) @PathVariable("id") Long id) throws Exception { |
| | | |
| | | return R.ok(slVolumeProductionRkService.codeInfo(id)); |
| | | } |
| | | @PostMapping("/codeInfo1") |
| | | @ApiOperation(value = "转移数据获取二维码样式") |
| | | public R<List<QRCodeVO>> codeInfo( Long id,Long zyglId) throws Exception { |
| | | |
| | | return R.ok(slVolumeProductionRkService.codeInfo1(id,zyglId)); |
| | | } |
| | | |
| | | @PostMapping("/getSlvolumeVolumeProductionRkList") |