Commit 9689bbdb authored by huyuchen's avatar huyuchen

huych-工行回单下载

parent 12fd1ec9
......@@ -15,6 +15,8 @@ import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.net.URISyntaxException;
/**
* 聚富通代发工资相关
......@@ -139,13 +141,13 @@ public class IcbcTransactionFlowIssueController {
@Operation(summary = "定时任务获取回单文件", description = "定时任务获取回单文件")
@Inner
@PostMapping("/inner/getPdfFile")
public R getPdfFile() {
public R getPdfFile() throws IOException, URISyntaxException {
return icbcTransactionFlowIssueService.getPdfFile();
}
@Operation(summary = "定时任务获取回单文件", description = "定时任务获取回单文件")
@PostMapping("/getTestPdfFile")
public R getPdfFileTest() {
public R getPdfFileTest() throws IOException, URISyntaxException {
return icbcTransactionFlowIssueService.getPdfFile();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment