czt
2026-01-19 0329de5a2343a179be54a9c70844515db202a998
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);
    }