sgj
2026-01-13 4e4bc0f110b1d2ebbce80a37b80697e8ac0347e0
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);
    }