sgj
2026-02-26 1fdfbf546f16ed346ebde4d3a25619f089f217da
fzzy-igdss-inte/src/main/java/com/fzzy/igds/api/v1/data/ApiV1Resp.java
@@ -36,7 +36,7 @@
        super();
    }
    public ApiV1Resp(String respCode, String respMsg, T data, ApiV1Req<JSONObject> req) {
    public ApiV1Resp(String respCode, String respMsg, T data, ApiV1Req<Object> req) {
        this.data = data;
        this.sn = req.getSn();
        this.auth = req.getAuth();
@@ -48,11 +48,11 @@
        this.respMsg = respMsg;
    }
    public static ApiV1Resp<Object> success(Object data, ApiV1Req<JSONObject> req) {
    public static ApiV1Resp<Object> success(Object data, ApiV1Req<Object> req) {
        return new ApiV1Resp<>(CODE_SUCCESS, null, data, req);
    }
    public static ApiV1Resp<Object> error(String respMsg, ApiV1Req<JSONObject> req) {
    public static ApiV1Resp<Object> error(String respMsg, ApiV1Req<Object> req) {
        return new ApiV1Resp<>(CODE_ERROR, respMsg, null, req);
    }