Commit 2a6038799e0a3b16be5750c03a8028341bafc098

Authored by liquanyu
1 parent f5c89b42b9

产筛导出添加年龄字段

Showing 1 changed file with 2 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java View file @ 2a60387
... ... @@ -268,6 +268,7 @@
268 268 for (SieveListResult sive : list) {
269 269 Map<String, Object> data = new HashMap<>();
270 270 data.put("name", sive.getName());
  271 + data.put("age", sive.getAge());
271 272 data.put("cDueWeek", sive.getcDueWeek());
272 273 data.put("statusText", sive.getStatusText());
273 274 data.put("ztfxText", sive.getZtfxText());
... ... @@ -285,6 +286,7 @@
285 286 OutputStream out = response.getOutputStream();
286 287 Map<String, String> cnames = new LinkedHashMap<>();
287 288 cnames.put("name", "姓名");
  289 + cnames.put("age", "年龄");
288 290 cnames.put("cDueWeek", "当前孕周");
289 291 cnames.put("statusText", "当前状态");
290 292 cnames.put("ztfxText", "整体风险");