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

com.github.fosin.cdp.mvc.result.ModelResult Maven / Gradle / Ivy

package com.github.fosin.cdp.mvc.result;

/**
 * 单实体结果
 */
public class ModelResult extends Result {
    private Object data;

    public ModelResult(ResultCode resultCode){
        super(resultCode);
    }

    public ModelResult(ResultCode resultCode, Object data){
        this(resultCode.getCode(), resultCode.getMsg(),data);
    }

    public ModelResult(int status,String msg){
        super(status, msg);
    }

    public ModelResult(int status,String msg, Object data){
        this(status, msg);
        this.data = data;
    }


    public Object getData() {
        return data;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy