This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// 声明该类所在的包为 com.utils
packagecom.utils;
// 导入 HashMap 类,用于存储键值对
importjava.util.HashMap;
// 导入 Map 接口,用于定义键值对存储的通用规范
importjava.util.Map;
// 定义一个名为 R 的类,继承自 HashMap,用于返回数据
publicclassRextendsHashMap<String,Object>{
// 定义序列化版本号,用于序列化和反序列化时的版本验证
privatestaticfinallongserialVersionUID=1L;
// 无参构造函数,初始化时设置默认状态码为 0
publicR(){
// 向 Map 中放入键为 "code",值为 0 的键值对
put("code",0);
}
// 静态方法,返回一个表示错误的 R 对象,默认错误码为 500,错误信息为 "未知异常,请联系管理员"