refactor(util): 注释掉 JCoUtil 中的 toMapList 方法
- 将 toMapList 方法注释掉,该方法原本用于将数据转换为 Map 列表 - 移除了泛型方法 toMapList(T data) 的实现 - 保留了其他 JCo 相关的转换功能
This commit is contained in:
parent
267e82cc37
commit
789f79cb09
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue