refactor(util): 注释掉 JCoUtil 中的 toMapList 方法

- 将 toMapList 方法注释掉,该方法原本用于将数据转换为 Map 列表
- 移除了泛型方法 toMapList(T data) 的实现
- 保留了其他 JCo 相关的转换功能
This commit is contained in:
曹鹏飞 2026-03-22 12:56:35 +08:00
parent 267e82cc37
commit 789f79cb09
1 changed files with 3 additions and 3 deletions

View File

@ -73,9 +73,9 @@ public class JCoUtil {
return list;
}
public static <T> List<Map<String, Object>> toMapList(T data) {
return Collections.singletonList(BeanUtil.toMap(data));
}
// public static <T> List<Map<String, Object>> toMapList(T data) {
// return Collections.singletonList(BeanUtil.toMap(data));
// }
/**
* JCoStructure 转换为 Java Bean