package com.github.sd4324530.fastweixin.company.message;/** * Created by Nottyjay on 2015/6/12. */ import com.alibaba.fastjson.annotation.JSONField; /** * ==================================================================== * 上海聚攒软件开发有限公司 * -------------------------------------------------------------------- * * @author Nottyjay * @version 1.0.beta * ==================================================================== */ public class QYVideoMsg extends QYBaseMsg { @JSONField(name = "video") private Video video; public Video getVideo() { return video; } public void setVideo(Video video) { this.video = video; } public class Video{ @JSONField(name = "media_id") private String mediaId; @JSONField(name = "title") private String title; @JSONField(name = "description") private String description; public String getMediaId() { return mediaId; } public void setMediaId(String mediaId) { this.mediaId = mediaId; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } } }