ApkMessage.java 1.91 KB
package com.gimi.common.cinema.model;

/**
 * Created by wugian on 2016/8/5
 */
public class ApkMessage {
    /**
     * code : 0
     * msg : 成功
     * data : {"verCode":"41","verName":"v4.1","description":"1,数据库共用.#2,搜索功能优化.#3,扫描优化.#3,其他片源兼容测试","appUrl":"http://apkhome.qiniudn.com/088/GimiCinema-qinlin-4.0-40-1.apk"}
     */

    private int code;
    private String msg;
    /**
     * verCode : 41
     * verName : v4.1
     * description : 1,数据库共用.#2,搜索功能优化.#3,扫描优化.#3,其他片源兼容测试
     * appUrl : http://apkhome.qiniudn.com/088/GimiCinema-qinlin-4.0-40-1.apk
     */

    private DataEntity data;

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public DataEntity getData() {
        return data;
    }

    public void setData(DataEntity data) {
        this.data = data;
    }

    public static class DataEntity {
        private int verCode;
        private String verName;
        private String description;
        private String appUrl;

        public int getVerCode() {
            return verCode;
        }

        public void setVerCode(int verCode) {
            this.verCode = verCode;
        }

        public String getVerName() {
            return verName;
        }

        public void setVerName(String verName) {
            this.verName = verName;
        }

        public String getDescription() {
            return description;
        }

        public void setDescription(String description) {
            this.description = description;
        }

        public String getAppUrl() {
            return appUrl;
        }

        public void setAppUrl(String appUrl) {
            this.appUrl = appUrl;
        }
    }
}