All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liumapp.datapay.ocr.car.bean.ResBody Maven / Gradle / Ivy

There is a newer version: v2.0.5
Show newest version
package com.liumapp.datapay.ocr.car.bean;

/**
 * Created by haoxy on 2018/11/24.
 * E-mail:[email protected]
 * github:https://github.com/haoxiaoyong1014
 */
public class ResBody {

    private String msg;

    private String code;

    private String data;

    private Boolean success;

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public String getCode() {
        return code;
    }

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

    public String getData() {
        return data;
    }

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

    public Boolean getSuccess() {
        return success;
    }

    public void setSuccess(Boolean success) {
        this.success = success;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy