DetailBean.java 965 Bytes
package com.huaheng.mobilewms.bean;

import android.graphics.drawable.Drawable;

public class DetailBean {

    private Drawable drawable;
    private String type;
    private String name;
    private String code;

    public DetailBean(Drawable drawable, String type, String name, String code) {
        this.drawable = drawable;
        this.type = type;
        this.name = name;
        this.code = code;
    }

    public Drawable getDrawable() {
        return drawable;
    }

    public void setDrawable(Drawable drawable) {
        this.drawable = drawable;
    }

    public String getType() {
        return type;
    }

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

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getCode() {
        return code;
    }

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