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

cn.ipokerface.weixin.model.media.MediaCounter Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.model.media;

import com.alibaba.fastjson.annotation.JSONField;

import java.io.Serializable;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public class MediaCounter implements Serializable { private static final long serialVersionUID = -1752502821323552783L; /** * 应用素材总数目(企业号独有) */ @JSONField(name = "total_count") private int totalCount; /** * 文件素材总数目(企业号独有) */ @JSONField(name = "file_count") private int fileCount; /** * 语音总数量 */ @JSONField(name = "voice_count") private long voiceCount; /** * 视频总数量 */ @JSONField(name = "video_count") private long videoCount; /** * 图片总数量 */ @JSONField(name = "image_count") private long imageCount; /** * 图文总数量 */ @JSONField(name = "news_count") private long newsCount; public long getVoiceCount() { return voiceCount; } public void setVoiceCount(long voiceCount) { this.voiceCount = voiceCount; } public long getVideoCount() { return videoCount; } public void setVideoCount(long videoCount) { this.videoCount = videoCount; } public long getImageCount() { return imageCount; } public void setImageCount(long imageCount) { this.imageCount = imageCount; } public long getNewsCount() { return newsCount; } public void setNewsCount(long newsCount) { this.newsCount = newsCount; } public int getTotalCount() { return totalCount; } public void setTotalCount(int totalCount) { this.totalCount = totalCount; } public int getFileCount() { return fileCount; } public void setFileCount(int fileCount) { this.fileCount = fileCount; } @Override public String toString() { return "MediaCounter [totalCount=" + totalCount + ", fileCount=" + fileCount + ", voiceCount=" + voiceCount + ", videoCount=" + videoCount + ", imageCount=" + imageCount + ", newsCount=" + newsCount + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy