zuoxiao
7 天以前 cc21e79cd80345b97cc899ddff02c962d4f432fc
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;
}