import com.qbskj.project.util.SpringUtils; /** * 消息 * */ public class Message { /** * 类型 */ public enum Type { /** 成功 */ success, /** 警告 */ warn, /** 错误 */ error } /** 类型 */ private Type type; /** 内容 */ private String content; /** 数据 */ private Objec…