企业🤖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); ```