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

com.diboot.core.vo.JsonResult Maven / Gradle / Ivy

package com.diboot.core.vo;

import com.diboot.core.util.V;

import java.io.Serializable;

/**
 * JSON返回结果
 * @author Mazhicheng
 * @version v2.0
 * @date 2019/01/01
 */
public class JsonResult implements Serializable {
    private static final long serialVersionUID = 1001L;

    /***
     * 状态码
     */
    private int code;
    /***
     * 消息内容
     */
    private String msg;
    /***
     * 返回结果数据
     */
    private Object data;

    /**
     * 默认成功,无返回数据
      */
    public JsonResult(){
    }

    /**
     * 默认成功,有返回数据(及附加提示信息)
     */
    public JsonResult(Object data, String... additionalMsg){
        this.code = Status.OK.code();
        this.msg = Status.OK.label();
        this.data = data;
        if(V.notEmpty(additionalMsg)){
            this.msg += ": " + additionalMsg[0];
        }
    }

    /***
     * 非成功,指定状态(及附加提示信息)
     * @param status
     * @param additionalMsg
     */
    public JsonResult(Status status, String... additionalMsg){
        this.code = status.code();
        this.msg = status.label();
        if(V.notEmpty(additionalMsg)){
            this.msg += ": " + additionalMsg[0];
        }
        this.data = null;
    }

    /**
     * 非成功,指定状态、返回数据(及附加提示信息)
      */
    public JsonResult(Status status, Object data, String... additionalMsg){
        this.code = status.code();
        this.msg = status.label();
        if(V.notEmpty(additionalMsg)){
            this.msg += ": " + additionalMsg[0];
        }
        this.data = data;
    }

    /***
     * 自定义JsonResult
     * @param code
     * @param label
     * @param data
     */
    public JsonResult(int code, String label, Object data){
        this.code = code;
        this.msg = label;
        this.data = data;
    }

    /***
     * 绑定分页信息
     * @param pagination
     */
    public JsonResult bindPagination(Pagination pagination){
        return new PagingJsonResult(this, pagination);
    }

    public int getCode() {
        return code;
    }
    public String getMsg() {
        return msg;
    }
    public Object getData() {
        return data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy