ActivityBean.java 4.57 KB
package com.cnlive.goldenline.util;

import android.support.annotation.NonNull;

/**
 * Created by Administrator on 2017/1/12.
 */

public class ActivityBean {

    private int type;

    private String data;

    private Integer voucherId;

    private int productId;

    private String title;

    private int orderId;

    private float orderPrice;

    private String url;

    private String sugarOrderId;

    private String banner_title;

    private String banner_url;

    private String shareTitle;

    private String imageUrl;

    private String desc;

    private int gotoVc;

    private int num;


    public ActivityBean(int type, String data, Integer voucherId, int productId, String title, int orderId, float orderPrice, String url, String sugarOrderId, String banner_title, String banner_url, String shareTitle, String imageUrl, String desc, int gotoVc, int num) {
        this.type = type;
        this.data = data;
        this.voucherId = voucherId;
        this.productId = productId;
        this.title = title;
        this.orderId = orderId;
        this.orderPrice = orderPrice;
        this.url = url;
        this.sugarOrderId = sugarOrderId;
        this.banner_title = banner_title;
        this.banner_url = banner_url;
        this.shareTitle = shareTitle;
        this.imageUrl = imageUrl;
        this.desc = desc;
        this.gotoVc = gotoVc;
        this.num = num;
    }

    public int getType() {
        return type;
    }

    public int getGotoVc() {
        return gotoVc;
    }

    public void setGotoVc(int gotoVc) {
        this.gotoVc = gotoVc;
    }

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

    public String getData() {
        return data;
    }

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

    public Integer getVoucherId() {
        return voucherId;
    }

    public void setVoucherId(Integer voucherId) {
        this.voucherId = voucherId;
    }

    public int getProductId() {
        return productId;
    }

    public void setProductId(int productId) {
        this.productId = productId;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public int getOrderId() {
        return orderId;
    }

    public void setOrderId(int orderId) {
        this.orderId = orderId;
    }

    public float getOrderPrice() {
        return orderPrice;
    }

    public void setOrderPrice(float orderPrice) {
        this.orderPrice = orderPrice;
    }

    public String getUrl() {
        return url;
    }

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

    public String getSugarOrderId() {
        return sugarOrderId;
    }

    public void setSugarOrderId(String sugarOrderId) {
        this.sugarOrderId = sugarOrderId;
    }

    public String getBanner_title() {
        return banner_title;
    }

    public void setBanner_title(String banner_title) {
        this.banner_title = banner_title;
    }

    public String getBanner_url() {
        return banner_url;
    }

    public void setBanner_url(String banner_url) {
        this.banner_url = banner_url;
    }

    public String getShareTitle() {
        return shareTitle;
    }

    public void setShareTitle(String shareTitle) {
        this.shareTitle = shareTitle;
    }

    public String getImageUrl() {
        return imageUrl;
    }

    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }

    public String getDesc() {
        return desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }

    public int getNum() {
        return num;
    }

    public void setNum(int num) {
        this.num = num;
    }

    public ActivityBean() {
        super();
    }

    @NonNull
    @Override
    public String toString() {
        return "ActDataBean{" +
                "type=" + type +
                ", data='" + data + '\'' +
                ", voucherId=" + voucherId +
                ", productId=" + productId +
                ", title='" + title + '\'' +
                ", orderId=" + orderId +
                ", orderPrice=" + orderPrice +
                ", url='" + url + '\'' +
                ", sugarOrderId='" + sugarOrderId + '\'' +
                ", banner_title='" + banner_title + '\'' +
                ", banner_url='" + banner_url + '\'' +
                ", shareTitle='" + shareTitle + '\'' +
                ", imageUrl='" + imageUrl + '\'' +
                ", desc='" + desc + '\'' +
                ", gotoVc=" + gotoVc +
                ", num=" + num +
                '}';
    }
}