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

com.biz.web.response.ResponseData Maven / Gradle / Ivy

Go to download

BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。

The newest version!
package com.biz.web.response;

import lombok.*;

import java.io.Serializable;

/**
 * 自定义返回值
 *
 * @author francis
 * @since 1.0.1
 **/
@Setter
@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ResponseData implements Serializable {

    private int errorCode;
    private String errorMessage;
    private T data;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy