|
|
@@ -1840,7 +1840,20 @@ public class ExcelTabController extends BladeController {
|
|
|
.eq(WbsTreeContract::getPKeyId, pkeyId));
|
|
|
return R.data(wbsTreeContract.getPdfUrl());
|
|
|
}
|
|
|
-
|
|
|
+ @GetMapping("/cope-buss-tab-list")
|
|
|
+ @ApiOperationSupport(order = 19)
|
|
|
+ @ApiOperation(value = "表单批量复制", notes = "表单批量复制")
|
|
|
+ @Transactional
|
|
|
+ @ApiImplicitParams(value = {
|
|
|
+ @ApiImplicitParam(name = "pkeyId", value = "pkeyId", required = true),
|
|
|
+ @ApiImplicitParam(name = "size", value = "size", required = true)
|
|
|
+ })
|
|
|
+ public R copeBussTab(Long pkeyId,Integer size) {
|
|
|
+ for (Integer i = 0; i < size; i++) {
|
|
|
+ copeBussTab(pkeyId);
|
|
|
+ }
|
|
|
+ return R.success("成功");
|
|
|
+ }
|
|
|
|
|
|
@GetMapping("/cope-buss-tab")
|
|
|
@ApiOperationSupport(order = 19)
|