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

org.iartisan.runtime.api.res.BaseRes Maven / Gradle / Ivy

The newest version!
package org.iartisan.runtime.api.res;

/**
 * @author King  2019-8-22
 */
public class BaseRes {

    private String code;

    private String msg;

    public void setSystemErrorRes(){

    }

    public String getCode() {
        return code;
    }

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

    public String getMsg() {
        return msg;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy