From 4a2deb11b819dd78a8c75e244ef67ec2e48cf5f5 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 14 四月 2025 21:03:28 +0800 Subject: [PATCH] 重构轮灌组修改接口 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/dyFile/FileVo.java | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/dyFile/FileVo.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/dyFile/FileVo.java new file mode 100644 index 0000000..b51375e --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/dyFile/FileVo.java @@ -0,0 +1,38 @@ +package com.dy.pipIrrGlobal.dyFile; + +import com.alibaba.fastjson2.annotation.JSONField; +import com.alibaba.fastjson2.writer.ObjectWriterImplToString; +import lombok.Data; + +@Data +public class FileVo { + @JSONField(serializeUsing= ObjectWriterImplToString.class) + public Long id ; //鏁版嵁搴撳疄浣撲富閿� + public Integer hash ;//鏂囦欢鍚峢ash + public String orgName ;//鏂囦欢鍘熷悕 + public String extName ;//鏂囦欢鎵╁睍鍚� + public String filePath ;//鏂囦欢鍦ㄦ湇鍔$瀛樺偍鐩稿璺緞 + public String webPath ;//web鏂囦欢璁块棶璺緞 + public String webPathZip;//鐓х墖鏂囦欢缂╃暐鍥捐闂矾寰勶紝鍏朵粬绫诲瀷鏂囦欢姝ゅ睘鎬т负null + public String downloadPath;//web鏂囦欢涓嬭浇璺緞锛屽簲鐢ㄦ椂璺緞鍚庨潰鍔犱笂 ?id=[id] + + public FileVo(){} + + public FileVo(Long id, + Integer hash, + String orgName, + String extName, + String filePath, + String webPath, + String webPathZip, + String downloadPath){ + this.id = id ; + this.hash = hash ; + this.orgName = orgName ; + this.extName = extName ; + this.filePath = filePath ; + this.webPath = webPath ; + this.webPathZip = webPathZip ; + this.downloadPath = downloadPath ; + } +} -- Gitblit v1.8.0