1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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; 
 |  } 
 |  
  |