| | |
| | | return Result.success(standardProductListService.copyStandardProductSort(copyStandardProductListDto)); |
| | | } |
| | | |
| | | @ApiOperation(value = "标准树下检验项处理") |
| | | @PostMapping("/productListOperate") |
| | | public Result productListOperate(@RequestBody StandardProductListDto standardProductListDto) { |
| | | standardProductListService.productListOperate(standardProductListDto); |
| | | @ApiOperation(value = "标准树下检验项提交") |
| | | @PostMapping("/productListSubmit") |
| | | public Result productListSubmit(@RequestBody StandardProductListUpdateRecord standardProductListUpdateRecord) { |
| | | standardProductListService.productListSubmit(standardProductListUpdateRecord); |
| | | return Result.success(); |
| | | } |
| | | |
| | | @ApiOperation(value = "标准树下检验项修改记录分页查询") |
| | | @GetMapping("/standardProductListRecordPage") |
| | | public Result standardProductListRecordPage(Page page, StandardProductListUpdateRecord standardProductListUpdateRecord) { |
| | | return Result.success(standardProductListService.standardProductListRecordPage(page,standardProductListUpdateRecord)); |
| | | @ApiOperation(value = "标准树下检验项审核") |
| | | @PostMapping("/productListCheck") |
| | | public Result productListCheck(@RequestBody StandardProductListUpdateRecord standardProductListUpdateRecord) { |
| | | standardProductListService.productListCheck(standardProductListUpdateRecord); |
| | | return Result.success(); |
| | | } |
| | | } |