2
0

feat: 下载发票pdf

This commit is contained in:
caiyuchao
2025-06-16 19:14:31 +08:00
parent b70ac9d5cc
commit 3dfee8e360
14 changed files with 98 additions and 17 deletions

View File

@@ -25,6 +25,11 @@ public class SysFile
*/
private String localUrl;
/**
* 文件路径
*/
private String filePath;
/**
* 文件gateway地址
*/
@@ -64,6 +69,14 @@ public class SysFile
this.gatewayUrl = gatewayUrl;
}
public String getFilePath() {
return filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -71,6 +84,7 @@ public class SysFile
.append("url", getUrl())
.append("localUrl", getLocalUrl())
.append("gatewayUrl", getGatewayUrl())
.append("filePath", getFilePath())
.toString();
}
}