guoyuji
2024-10-23 77c7984fb636f81a87208aea2bcffc701f6419e8
north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
@@ -368,4 +368,20 @@
        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));
    }
}