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

org.sophon.commons.core.SophonResult Maven / Gradle / Ivy

The newest version!
package org.sophon.commons.core;

import java.io.Serializable;

/**
 * sophon 通用结果类
 * @author moushaokun
 * @since time: 2023-02-16 21:55
 */
public class SophonResult implements Serializable {
    private static final long serialVersionUID = 6111391482629646060L;
    
    /** 结果码:错误码、http状态码,根据业务自行定义 */
    private String            code;

    /** 结果数据 */
    private T                 data;

    /** 错误提示,用户可阅读 */
    private String            message;

    public SophonResult(){}

    public String getCode() {
        return code;
    }

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

    public T getData() {
        return data;
    }

    public SophonResult setData(T data) {
        this.data = data;
        return this;
    }

    public String getMessage() {
        return message;
    }

    public SophonResult setMessage(String message) {
        this.message = message;
        return this;
    }

    @Override
    public String toString() {
        return "SophonResult(code=" + this.getCode() + ", data=" + this.getData() + ", message=" + this.getMessage() + ")";
    }

    public static  SophonResult of(String code, T data, String message){
        return new SophonResult().setCode(code).setData(data).setMessage(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy