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; }