
org.jeewx.api.wxsendmsg.model.WxMedia Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeewx-api Show documentation
Show all versions of jeewx-api Show documentation
JEEWX-API(微信极速SDK、同时支持微信公众号\企业微信\支付窗\小程序\微博).
The newest version!
package org.jeewx.api.wxsendmsg.model;
/**
* 多媒体资源文件
* @author LIAIJUN
*
*/
public class WxMedia {
private String fileName;
private String filePath;
private String type;
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getFilePath() {
return filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return "WxMedia [fileName=" + fileName + ", filePath=" + filePath + ", type=" + type + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy