com.codingapi.springboot.framework.dto.response.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
package com.codingapi.springboot.framework.dto.response;
import com.codingapi.springboot.framework.serializable.JsonSerializable;
import lombok.Getter;
import lombok.Setter;
/**
* @author lorne
* 2020/12/17
*/
@Setter
@Getter
public class Response implements JsonSerializable {
private boolean success;
private String errCode;
private String errMessage;
public static Response buildFailure(String errCode, String errMessage) {
Response response = new Response();
response.setSuccess(false);
response.setErrCode(errCode);
response.setErrMessage(errMessage);
return response;
}
public static Response buildSuccess() {
Response response = new Response();
response.setSuccess(true);
return response;
}
}