feat: 下载发票pdf
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user