/*
* Copyright 2007-2107 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright (c) 2007-2107, the original author or authors. All rights reserved.
*
* This program licensed under the terms of the GNU Lesser General Public License version 3.0
* as published by the Free Software Foundation.
*/
package net.ymate.platform.module.wechat.base;
import com.alibaba.fastjson.annotation.JSONField;
/**
* @author ει (suninformation@163.com) on 15/5/21 δΈε9:31
* @version 1.0
*/
public class WxMaterialCount {
@JSONField(name = "voice_count")
private int voiceCount;
@JSONField(name = "video_count")
private int videoCount;
@JSONField(name = "image_count")
private int imageCount;
@JSONField(name = "news_count")
private int newsCount;
public int getVoiceCount() {
return voiceCount;
}
public void setVoiceCount(int voiceCount) {
this.voiceCount = voiceCount;
}
public int getVideoCount() {
return videoCount;
}
public void setVideoCount(int videoCount) {
this.videoCount = videoCount;
}
public int getImageCount() {
return imageCount;
}
public void setImageCount(int imageCount) {
this.imageCount = imageCount;
}
public int getNewsCount() {
return newsCount;
}
public void setNewsCount(int newsCount) {
this.newsCount = newsCount;
}
}