GuidanceBean.java 1.46 KB
package com.cnlive.goldenline.ui.model;

import android.support.annotation.NonNull;

/**
 * Description:
 * Created on 2017/2/25
 * Author : 萧
 */

public class GuidanceBean {

    String title;
    // 是否显示上方间隔  0 显示  1 不显示
    int tag;

    boolean isShowArrow;

    int type;

    public GuidanceBean() {
    }

    public GuidanceBean(String title, int tag, int type) {
        this.title = title;
        this.tag = tag;
        this.type = type;
    }

    public GuidanceBean(String title, int tag, boolean isShowArrow, int type) {
        this.title = title;
        this.tag = tag;
        this.isShowArrow = isShowArrow;
        this.type = type;
    }

    public boolean isShowArrow() {
        return isShowArrow;
    }

    public void setShowArrow(boolean showArrow) {
        isShowArrow = showArrow;
    }

    public String getTitle() {
        return title;
    }

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

    public int getTag() {
        return tag;
    }

    public void setTag(int tag) {
        this.tag = tag;
    }

    public int getType() {
        return type;
    }

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

    @Override
    public String toString() {
        return "GuidanceBean{" +
                "title='" + title + '\'' +
                ", tag=" + tag +
                ", isShowArrow=" + isShowArrow +
                ", type=" + type +
                '}';
    }
}