You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
528 B
26 lines
528 B
package com.test.bean;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class Result {
|
|
private int code;
|
|
private String msg;
|
|
private Object data;
|
|
|
|
public static Result success(){
|
|
return new Result(1,"success",null);
|
|
}
|
|
public static Result success(Object data){
|
|
return new Result(1,"success",data);
|
|
}
|
|
|
|
public static Result error(String msg){
|
|
return new Result(0,msg,null);
|
|
}
|
|
}
|