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

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

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

public class UploadFileRequest{

    /**
     * 文件字节流字符串
     */
    private String fileBase64;
    public String getFileBase64() {
        return fileBase64;
    }
    public void setFileBase64(String fileBase64) {
        this.fileBase64 = fileBase64;
    }
    
    /**
     * 文件类型
     */
    private String fileType;
    public String getFileType() {
        return fileType;
    }
    public void setFileType(String fileType) {
        this.fileType = fileType;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy