ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
列表拓展字段展示 === Control层面实现: ``` //------------------jeecg 标签列表,扩展字段显示---------------- List<GzUserInfoYw> gzUserInfoList = dataGrid.getResults(); for(GzUserInfoYw temp:gzUserInfoList){ Map<String,Map<String,Object>> extMap = new HashMap<String, Map<String,Object>>(); Map<String,Object> m = new HashMap<String, Object>(); m.put("mobile", "手机号值"); m.put("nicknameTxt", "昵称"); extMap.put(temp.getId(), m); } TagUtil.datagrid(response, dataGrid,extMap); ```