eleme.openapi.sdk.api.entity.openShop.ImageInfo Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.openShop;
public class ImageInfo{
/**
* 图片类型
*/
private Integer type;
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
/**
* 图片url
*/
private String url;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
/**
* 图片hash
*/
private String hash;
public String getHash() {
return hash;
}
public void setHash(String hash) {
this.hash = hash;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy