com.alipay.api.domain.ImageVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.Date;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 图片vo
*
* @author auto create
* @since 1.0, 2024-08-07 21:48:50
*/
public class ImageVO extends AlipayObject {
private static final long serialVersionUID = 6366232717574841394L;
/**
* 创建时间
*/
@ApiField("create_time")
private Date createTime;
/**
* 图文件名
*/
@ApiField("file_name")
private String fileName;
/**
* 图的高度,单位为px。
*/
@ApiField("height")
private Long height;
/**
* 图归属目录id
*/
@ApiField("image_directory_id")
private String imageDirectoryId;
/**
* 图资源id
*/
@ApiField("image_id")
private String imageId;
/**
* 图索引id
*/
@ApiField("image_index_id")
private String imageIndexId;
/**
* 图片链接
*/
@ApiField("image_url")
private String imageUrl;
/**
* 更新时间
*/
@ApiField("modify_time")
private Date modifyTime;
/**
* 图片的宽,单位为px
*/
@ApiField("width")
private Long width;
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Long getHeight() {
return this.height;
}
public void setHeight(Long height) {
this.height = height;
}
public String getImageDirectoryId() {
return this.imageDirectoryId;
}
public void setImageDirectoryId(String imageDirectoryId) {
this.imageDirectoryId = imageDirectoryId;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public String getImageIndexId() {
return this.imageIndexId;
}
public void setImageIndexId(String imageIndexId) {
this.imageIndexId = imageIndexId;
}
public String getImageUrl() {
return this.imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date modifyTime) {
this.modifyTime = modifyTime;
}
public Long getWidth() {
return this.width;
}
public void setWidth(Long width) {
this.width = width;
}
}