| | |
| | | |
| | | } |
| | | |
| | | @ApiOperation("打印自定义标签数据按工程查询接口") |
| | | @PostMapping("/getPrintCustomDataProjectNo/{type}/{projectNo}") |
| | | public Result getPrintCustomDataProjectNo( @PathVariable String type, |
| | | @PathVariable String projectNo) { |
| | | return Result.seccess(flowCardService.getPrintCustomDataProjectNo(type,projectNo)); |
| | | |
| | | } |
| | | |
| | | @ApiOperation("排序汇总查询接口") |
| | | @PostMapping("/selectSortTable") |
| | | public Result selectSortTable( |
| | |
| | | return Result.seccess(flowCardService.checkboxDeleteSv(object)); |
| | | } |
| | | |
| | | @ApiOperation("工程明细打印查询") |
| | | @PostMapping("/selectPrintProjectDetails/{projectNo}") |
| | | public Result selectPrintProjectDetails( |
| | | @PathVariable String projectNo) { |
| | | return Result.seccess(flowCardService.getPrintProjectDetails(projectNo)); |
| | | |
| | | } |
| | | @ApiOperation("工程明细打印标签查询") |
| | | @PostMapping("/getPrintCustomDataProjectNoDetail/{type}") |
| | | public Result getPrintCustomDataProjectNoDetail( |
| | | @PathVariable String type, |
| | | @RequestBody Map<String, Object> object) { |
| | | return Result.seccess(flowCardService.getPrintCustomDataProjectNoDetailSv(type,object)); |
| | | |
| | | } |
| | | |
| | | } |