com.tmsps.ne4weixin.bean.message.custom.vo.Image Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ne4weixin Show documentation
Show all versions of ne4weixin Show documentation
Ne4WeiXin For Spring is good :)
package com.tmsps.ne4weixin.bean.message.custom.vo;
/**
* @Title: Image.java
* @Package: com.tmsps.ne4weixin.bean.send
* @Description: 图片
* @author: hanjiefei
* @date: 2019-10-18
* @version V1.0
* @Copyright: 2019
*/
public class Image {
/**
* 必填 是 图片消息媒体id,可以调用获取临时素材接口拉取数据。
*/
private String media_id;
/**
* @param mediaId 图片消息媒体id,可以调用获取临时素材接口拉取数据。
*/
public Image(String mediaId) {
this.media_id = mediaId;
}
public String getMedia_id() {
return media_id;
}
public void setMedia_id(String media_id) {
this.media_id = media_id;
}
}