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
| package org.sxkj.tools.model;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| /**
| * tif 转换结果
| * @author zhongrj
| */
| @Data
| public class TifConvertResult {
|
| /**
| * 基础JPG图片路径
| */
| @JsonProperty("base_path")
| private String basePath;
|
| /**
| * 展示用图片路径(约2MB)
| */
| @JsonProperty("show_path")
| private String showPath;
|
| /**
| * 小尺寸图片路径(约200KB)
| */
| @JsonProperty("small_path")
| private String smallPath;
| }
|
|