com.blr19c.common.wxCp.model.LoadStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The blr19c-common library contains utility classes, Map/Stream implementation, sending enterprise
WeChat, IP/ip address acquisition, mybatis-plus separation implementation, and so on.
package com.blr19c.common.wxCp.model;
import com.blr19c.common.wxCp.enums.MediaTypeEnum;
import java.util.Date;
/**
* 素材上传返回体
*
* @author blr
*/
public class LoadStyle extends ResponseStyle {
/**
* 媒体类型
*/
private MediaTypeEnum type;
/**
* 素材id
*/
private String mediaId;
/**
* 创建时间
*/
private Date createdAt;
public LoadStyle(MediaTypeEnum type, String mediaId, Date createdAt) {
this.type = type;
this.mediaId = mediaId;
this.createdAt = createdAt;
}
public LoadStyle() {
}
public MediaTypeEnum getType() {
return type;
}
public void setType(MediaTypeEnum type) {
this.type = type;
}
public String getMediaId() {
return mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy