JPushBean.java 727 Bytes
package com.polysoft.nafmii.bean;

import com.alibaba.fastjson.annotation.JSONField;

public class JPushBean {

    @JSONField(name = "type")
    private String type;

    @JSONField(name = "url")
    private String url;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }


    public static class Params {
        @JSONField(name = "url")
        private String url;

        public String getUrl() {
            return url;
        }

        public void setUrl(String url) {
            this.url = url;
        }
    }
}