1 package com.supwisdom.institute.backend.common.framework.vo.response;
3 import com.fasterxml.jackson.annotation.JsonIgnore;
4 import com.supwisdom.institute.backend.common.framework.vo.response.data.IApiResponseData;
6 public abstract class AbstractApiResponse<T extends IApiResponseData> implements IApiResponse<T> {
11 private static final long serialVersionUID = 846108786006850165L;
15 protected boolean acknowleged = true;
20 public boolean isAcknowleged() {
24 protected int code = 0;
25 protected String message = null;
28 public int getCode() {
33 public String getMessage() {