package com.dayu.pipirrapp.bean.net;
|
|
/**
|
* ImageResult -返回的图片相关
|
*
|
* @author zuoxiao
|
* @version 1.0
|
* @since 2024-12-06
|
*/
|
public class ImageResult {
|
String id;
|
String webPath;
|
String webPathZip;
|
|
public String getWebPathZip() {
|
return webPathZip;
|
}
|
|
public void setWebPathZip(String webPathZip) {
|
this.webPathZip = webPathZip;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getWebPath() {
|
return webPath;
|
}
|
|
public void setWebPath(String webPath) {
|
this.webPath = webPath;
|
}
|
}
|