liuxm
2024-05-16 f1e6aadf01a2ac32bc1707ca43fc6a2d2587b9ac
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/dyFile/FileVo.java
@@ -10,6 +10,7 @@
    public String extName ;//文件扩展名
    public String webPath ;//web文件访问路径
    public String webPathZip;//照片文件缩略图访问路径,其他类型文件此属性为null
    public String downloadPath;//web文件下载路径,应用时路径后面加上 ?id=[id]
    public FileVo(){}
@@ -18,12 +19,14 @@
                  String orgName,
                  String extName,
                  String webPath,
                  String webPathZip){
                  String webPathZip,
                  String downloadPath){
        this.id = id ;
        this.hash = hash ;
        this.orgName = orgName ;
        this.extName = extName ;
        this.webPath = webPath ;
        this.webPathZip = webPathZip ;
        this.downloadPath = downloadPath ;
    }
}