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