HeadBean.java 1.15 KB
package com.huaheng.mobilewms.bean;

import android.widget.TextView;

/**
 * Created by youjie on 2020/12/16
 */
public class HeadBean {

   private  String code;
   private  String type;
   private  String total;
   private  String time;
   private  String created;

    public HeadBean(String code, String type, String total, String time, String created) {
        this.code = code;
        this.type = type;
        this.total = total;
        this.time = time;
        this.created = created;
    }

    public String getCode() {
        return code;
    }

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

    public String getType() {
        return type;
    }

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

    public String getTotal() {
        return total;
    }

    public void setTotal(String total) {
        this.total = total;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public String getCreated() {
        return created;
    }

    public void setCreated(String created) {
        this.created = created;
    }
}