|
@@ -5347,7 +5347,7 @@ public R<Object> customAddContractNode(@RequestBody CustomAddContractNodeDTO dto
|
|
*
|
|
*
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
- @GetMapping("/updateCheckPdfInfo")
|
|
|
|
|
|
+ @PostMapping("/updateCheckPdfInfo")
|
|
@ApiOperationSupport(order = 40)
|
|
@ApiOperationSupport(order = 40)
|
|
@ApiOperation(value = "添加pdf检查接口")
|
|
@ApiOperation(value = "添加pdf检查接口")
|
|
@ApiImplicitParams(value = {
|
|
@ApiImplicitParams(value = {
|
|
@@ -5355,9 +5355,9 @@ public R<Object> customAddContractNode(@RequestBody CustomAddContractNodeDTO dto
|
|
@ApiImplicitParam(name = "classify", value = "1施工2监理",required = true),
|
|
@ApiImplicitParam(name = "classify", value = "1施工2监理",required = true),
|
|
@ApiImplicitParam(name = "ids", value = "多个用,拼接", required = true)
|
|
@ApiImplicitParam(name = "ids", value = "多个用,拼接", required = true)
|
|
})
|
|
})
|
|
- public R updateCheckPdfInfo(@RequestParam String type, @RequestParam String ids,@RequestParam String classify) {
|
|
|
|
|
|
+ public R updateCheckPdfInfo(@RequestBody ChekPdfVo chekPdfVo) {
|
|
|
|
|
|
- return informationQueryService.updateCheckPdfInfo(type, ids,classify);
|
|
|
|
|
|
+ return informationQueryService.updateCheckPdfInfo(chekPdfVo.getType(), chekPdfVo.getIds(), chekPdfVo.getClassify());
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|