All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.openShop.UploadFileResponse Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.openShop;

public class UploadFileResponse{

    /**
     * 是否上传成功
     */
    private Boolean success;
    public Boolean getSuccess() {
        return success;
    }
    public void setSuccess(Boolean success) {
        this.success = success;
    }
    
    /**
     * 文件hash
     */
    private String fileHash;
    public String getFileHash() {
        return fileHash;
    }
    public void setFileHash(String fileHash) {
        this.fileHash = fileHash;
    }
    
    /**
     * 文件url
     */
    private String fileUrl;
    public String getFileUrl() {
        return fileUrl;
    }
    public void setFileUrl(String fileUrl) {
        this.fileUrl = fileUrl;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy