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

com.pighand.framework.spring.response.ResultData Maven / Gradle / Ivy

There is a newer version: 2.0.0-bate.2.20250103
Show newest version
package com.pighand.framework.spring.response;

import lombok.Data;

/**
 * response 数据格式
 *
 * @author wangshuli
 */
@Data
public class ResultData {

    /** 状态码 */
    private Integer code;

    /** 返回数据 */
    private T data;

    /** 提示、异常返回消息 */
    private String error;

    public ResultData() {}

    public ResultData(Integer code, T data, String error) {
        this.setResultData(code, data, error);
    }

    public ResultData setResultData(Integer code, T data, String error) {
        this.code = code;
        this.data = data;
        this.error = error;

        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy