44323
2023-11-22 f6ba3e15355e22767e69f8fc14ae22523f8db8dc
cloud-server-other/src/main/java/com/dsh/other/util/ResultUtil.java
@@ -3,11 +3,13 @@
import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
 * 定义统一返回对象
 */
@ApiModel(value = "统一返回结果集")
@Data
public class ResultUtil<T> {
    public static final Integer SUCCESS = 200;
@@ -50,7 +52,7 @@
        return code;
    }
    private ResultUtil(Integer code, String msg) {
    public ResultUtil(Integer code, String msg) {
        this.code = code;
        this.msg = msg;
    }
@@ -128,6 +130,8 @@
    }
    /**
     * 运行异常
     * @return