zhubaomin
2025-04-09 80e22bcc7af8aebed7443965655542fbe4966708
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voFi/VoPhoto.java
New file
@@ -0,0 +1,32 @@
package com.dy.pipIrrGlobal.voFi;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
/**
 * @author ZhuBaoMin
 * @date 2024-10-22 15:41
 * @LastEditTime 2024-10-22 15:41
 * @Description web图片视图对象
 */
@Data
@JsonPropertyOrder({ "downloadPath", "webPath", "webPathZip"})
public class VoPhoto {
    private static final long serialVersionUID = 202410221542001L;
    /**
     * 文件下载路径
     */
    private String downloadPath;
    /**
     * web路径
     */
    private String webPath;
    /**
     * web路径(缩略图)
     */
    private String webPathZip;
}