Przeglądaj źródła

chore: auto bump version and changelog [skip ci]

iwt 1 miesiąc temu
rodzic
commit
6f504ee059

+ 5 - 2
cfc-backend/src/main/java/com/etotem/cfc/entity/Task.java

@@ -125,8 +125,11 @@ private Date acceptDeadline;
     /** TASK-SYS-248: 最短持续秒数(专注/游戏类,未达标不计完成) */
     private Integer minDurationSeconds;
 
-    /** 五维维度: body/mind/wisdom/action/wealth */
-    private String dimensionCode;
+/** 五维维度: body/mind/wisdom/action/wealth */
+	    private String dimensionCode;
+
+	    /** 父任务ID(购买任务→每日子任务);子任务在父任务完成前不显示 */
+	    private Long parentTaskId;
 
 	    /** JSON: {"body":0,"mind":0,"wisdom":0,"action":0,"wealth":0} */
 	    private String dimensionWeights;

+ 4 - 4
cfc-backend/src/main/java/com/etotem/cfc/service/AIService.java

@@ -39,13 +39,13 @@ public class AIService {
     @Resource
     private PiisService piisService;
 
-    @Value("${dify.base-url}")
+    @Value("${dify.base-url:}")
     private String difyBaseUrl;
 
-    @Value("${dify.api-key}")
+    @Value("${dify.api-key:}")
     private String apiKey;
 
-    @Value("${dify.nutrition-api-key}")
+    @Value("${dify.nutrition-api-key:}")
     private String nutritionApiKey;
 
     @Value("${dify.tongue-api-key:}")
@@ -66,7 +66,7 @@ public class AIService {
     @Resource
     private AiUserFactMapper aiUserFactMapper;
 
-    @Value("${dify.callback-secret}")
+    @Value("${dify.callback-secret:}")
     private String callbackSecret;
 
     private final ObjectMapper objectMapper = new ObjectMapper();

+ 2 - 2
cfc-backend/src/main/java/com/etotem/cfc/service/LanggraphSyncService.java

@@ -31,10 +31,10 @@ public class LanggraphSyncService {
 
     private static final Logger log = LoggerFactory.getLogger(LanggraphSyncService.class);
 
-    @Value("${dify.base-url}")
+    @Value("${dify.base-url:}")
     private String difyBaseUrl;
 
-    @Value("${dify.api-key}")
+    @Value("${dify.api-key:}")
     private String difyApiKey;
 
     @Resource

+ 2 - 2
cfc-backend/src/main/java/com/etotem/cfc/service/RecommendationService.java

@@ -35,10 +35,10 @@ import com.etotem.cfc.util.SortUtil;
 @Service
 public class RecommendationService {
 
-    @Value("${dify.base-url}")
+    @Value("${dify.base-url:}")
     private String difyBaseUrl;
 
-    @Value("${dify.api-key}")
+    @Value("${dify.api-key:}")
     private String difyApiKey;
 
     private final RestTemplate restTemplate = new RestTemplate();

+ 35 - 3
cfc-backend/src/main/java/com/etotem/cfc/service/TaskService.java

@@ -308,7 +308,39 @@ public List<Task> getTodayTasks(Long memberId, String dimensionCode) {
         }
 
         SortUtil.applySort(wrapper);
-        return taskMapper.selectList(wrapper);
+        List<Task> all = taskMapper.selectList(wrapper);
+        return filterLockedChildren(all);
+    }
+
+    /**
+     * 移除"父任务未完成"的子任务(购买任务→每日使用子任务链)。
+     * 子任务在父购买任务完成(status=completed)前保持锁定,不显示在今日任务中。
+     */
+    private List<Task> filterLockedChildren(List<Task> tasks) {
+        if (tasks == null || tasks.isEmpty()) return tasks;
+        java.util.Set<Long> parentIds = new java.util.HashSet<>();
+        for (Task t : tasks) {
+            if (t.getParentTaskId() != null) parentIds.add(t.getParentTaskId());
+        }
+        if (parentIds.isEmpty()) return tasks;
+
+        Map<Long, Task> parents = new HashMap<>();
+        if (!parentIds.isEmpty()) {
+            List<Task> plist = taskMapper.selectBatchIds(parentIds);
+            for (Task p : plist) parents.put(p.getId(), p);
+        }
+
+        List<Task> result = new java.util.ArrayList<>();
+        for (Task t : tasks) {
+            if (t.getParentTaskId() != null) {
+                Task parent = parents.get(t.getParentTaskId());
+                if (parent == null || !"completed".equals(parent.getStatus())) {
+                    continue; // 父购买任务未完成,子任务锁定不显示
+                }
+            }
+            result.add(t);
+        }
+        return result;
     }
 
     /**
@@ -325,13 +357,13 @@ public List<Task> getTodayTasks(Long memberId, String dimensionCode) {
         calendar.add(Calendar.DAY_OF_MONTH, 1);
         Date endOfDay = calendar.getTime();
 
-        return taskMapper.selectList(new LambdaQueryWrapper<Task>()
+        return filterLockedChildren(taskMapper.selectList(new LambdaQueryWrapper<Task>()
                 .eq(Task::getChildId, memberId)
                 .eq(Task::getCategory, category)
                 .ge(Task::getDeadline, startOfDay)
                 .lt(Task::getDeadline, endOfDay)
                 .in(Task::getStatus, Arrays.asList("pending", "completed"))
-                .orderByAsc(Task::getDeadline));
+                .orderByAsc(Task::getDeadline)));
     }
 
     /**

+ 220 - 41
cfc-backend/src/main/java/com/etotem/cfc/service/impl/HealthPlanServiceImpl.java

@@ -55,6 +55,41 @@ public class HealthPlanServiceImpl implements HealthPlanService {
         "^(?:\\d+[\\.、\\)\\]]|[-*•]|\\[.+\\]|【任务\\d+】)[\\s ]*([^\\n]+)"
     );
 
+    // ===== 任务动作筛选与分类 =====
+    // 只将有"实际动作"的行生成任务,并按 购买/阅读/饮食/运动/打卡/活动 分类。
+    // 纯原理/机制描述(如"激活AMPK通路、抑制肝糖原异生")不生成任务。
+
+    // 推荐动作后节的"完整动作短语"模式,避免把纯机制句误判为任务
+    // 购买动作(wealth)
+    private static final Pattern ACTION_PURCHASE = Pattern.compile(
+        "(?:购买|购置|采购|下单|买入|囤|选购|补充剂)[\\s\\S]{0,24}"
+    );
+    // 阅读动作(wisdom)—— 必须有"阅读/浏览/看/学习"等动词
+    private static final Pattern ACTION_READING = Pattern.compile(
+        "(?:阅读|查阅|浏览|观看|学习)[\\s\\S]{0,12}(?:文章|资料|书籍|书|科普|视频|内容|课程|知识|文献)?"
+    );
+    // 饮食动作(body)——动词"吃/喝/补充/摄入/替换/搭配"或 食物词+频率量词(每/日/周/克/份/餐)
+    private static final Pattern ACTION_DIET = Pattern.compile(
+        "(?:(?:吃|喝|食用|进食|摄入|饮用|补充|服用|饮|餐|多吃|少吃|替换|换成|替代|加入|搭配|服用)(?:[\\s\\S]{0,18})?)"
+        + "|(?:(?:每日|每天|每周|每餐|每份|坐)(?:[\\s\\S]{0,6})(?:鱼|鸡|虾|菜|蔬|蔬菜|谷|谷物|豆|肉|奶|蛋|坚果|水果|燕麦|藜|薯|瓜|玉米)?)"
+    );
+    // 运动动作(body)
+    private static final Pattern ACTION_EXERCISE = Pattern.compile(
+        "(?:运动|跑步|慢跑|快走|散步|步行|锻炼|健身|瑜伽|游泳|拉伸|训练|跳绳|爬楼|骑车|早操|体操|太极|八段锦|深蹲|俯卧撑|晨跑|日行)[\\s\\S]{0,20}"
+    );
+    // 打卡动作(mind)——记录/监测类
+    private static final Pattern ACTION_CHECKIN = Pattern.compile(
+        "(?:打卡|记录|称重|监测|测量|测|登记|日志\\s*[::]?\\s*|拍照|上传|量血压|测血糖|记录饮食|写\\s*日记|打卡记录)"
+    );
+    // 活动动作(action)
+    private static final Pattern ACTION_ACTIVITY = Pattern.compile(
+        "(?:参加|参与|报名|预约|安排|拜访|邀|陪|亲子|交流|分享|出行|游玩|聚会|入睡|睡眠|休息|早睡|冥想|深呼吸|放松)"
+    );
+    // 机制纯原理描述(分类全不中、且命中机制词 → 视为纯原理,不生成任务)
+    private static final Pattern MECHANISM_PATTERN = Pattern.compile(
+        "(?:通路|机制|异生|分泌|合成|上调|下调|受体|酶|信号|AMPK|调节轴|屏障|酶活性|转录|翻译|代谢途径|靶点)"
+    );
+
     @Override
     public Long savePlan(HealthPlan plan) {
         plan.setCreatedAt(new Date());
@@ -208,8 +243,8 @@ public class HealthPlanServiceImpl implements HealthPlanService {
         String content = plan.getPlanContent();
         if (content == null || content.trim().isEmpty()) return;
 
-        List<String> taskLines = parseTaskLines(content);
-        if (taskLines.isEmpty()) return;
+        List<String> rawLines = parseTaskLines(content);
+        if (rawLines.isEmpty()) return;
 
         Long familyId = plan.getFamilyId();
         String[] memberIdArray = (plan.getMemberIds() != null && !plan.getMemberIds().isEmpty())
@@ -226,43 +261,95 @@ public class HealthPlanServiceImpl implements HealthPlanService {
 
         Date now = new Date();
 
-        for (String line : taskLines) {
-            // 幂等:同一方案今天已有同名任务则跳过(deadline 限定当天)
-            Calendar todayStart = Calendar.getInstance();
-            todayStart.set(Calendar.HOUR_OF_DAY, 0); todayStart.set(Calendar.MINUTE, 0);
-            todayStart.set(Calendar.SECOND, 0); todayStart.set(Calendar.MILLISECOND, 0);
-            Calendar todayEnd = (Calendar) todayStart.clone();
-            todayEnd.add(Calendar.DAY_OF_MONTH, 1);
-
-            boolean exists = taskMapper.selectCount(new QueryWrapper<Task>()
-                .eq("family_id", familyId)
-                .eq("source_type", "plan")
-                .eq("source_id", plan.getId())
-                .eq("title", line.trim())
-                .ge("deadline", todayStart.getTime())
-                .lt("deadline", todayEnd.getTime())) > 0;
-            if (exists) continue;
-
-            Task task = new Task();
-            task.setFamilyId(familyId);
-            task.setChildId(childId);
-            task.setExecutorType("child");
-            task.setExecutorId(executorId);
-            task.setCreatorId(executorId != null ? executorId : 0L);
-            task.setTitle(line.trim());
-            task.setDescription("");
-            task.setPoints(10);
-            task.setDeadline(deadline);
-            task.setStatus("pending");
-            task.setSourceType("plan");
-            task.setSourceId(plan.getId());
-            task.setFrequency("daily");
-            task.setRepeatType("daily");
-            task.setCategory("健康方案");
-            task.setNeedReview(0);
-            task.setCreatedAt(now);
-            task.setUpdatedAt(now);
-            taskMapper.insert(task);
+        for (String raw : rawLines) {
+            String line = raw.trim();
+            if (line.isEmpty()) continue;
+
+            // 任务动作筛选:只生成包含"实际动作"的任务,纯原理描述被过滤
+            // 购买任务额外派生"每日使用/服用"子任务(parentTaskId 关联到购买任务)
+            List<TaskDraft> drafts = classifyTaskLine(line);
+            if (drafts == null || drafts.isEmpty()) continue;
+
+            Long buyTaskId = null;
+            for (TaskDraft draft : drafts) {
+                // 幂等:同一方案今天已有同名任务则跳过(deadline 限定当天)
+                Calendar todayStart = Calendar.getInstance();
+                todayStart.set(Calendar.HOUR_OF_DAY, 0); todayStart.set(Calendar.MINUTE, 0);
+                todayStart.set(Calendar.SECOND, 0); todayStart.set(Calendar.MILLISECOND, 0);
+                Calendar todayEnd = (Calendar) todayStart.clone();
+                todayEnd.add(Calendar.DAY_OF_MONTH, 1);
+
+                boolean exists = taskMapper.selectCount(new QueryWrapper<Task>()
+                    .eq("family_id", familyId)
+                    .eq("source_type", "plan")
+                    .eq("source_id", plan.getId())
+                    .eq("title", draft.title)
+                    .ge("deadline", todayStart.getTime())
+                    .lt("deadline", todayEnd.getTime())) > 0;
+                if (exists) {
+                    if ("购买任务".equals(draft.categoryLabel) && buyTaskId == null) {
+                        // 购买任务已存在,尝试查回其ID以关联子任务
+                        Task existingBuy = taskMapper.selectOne(new QueryWrapper<Task>()
+                            .eq("family_id", familyId)
+                            .eq("source_type", "plan")
+                            .eq("source_id", plan.getId())
+                            .eq("title", draft.title)
+                            .eq("category", "购买任务")
+                            .last("LIMIT 1"));
+                        if (existingBuy != null) buyTaskId = existingBuy.getId();
+                    }
+                    continue;
+                }
+
+                Task task = new Task();
+                task.setFamilyId(familyId);
+                task.setChildId(childId);
+                task.setExecutorType("child");
+                task.setExecutorId(executorId);
+                task.setCreatorId(executorId != null ? executorId : 0L);
+                task.setTitle(draft.title);
+                task.setDescription("");
+                task.setPoints(10);
+                task.setDeadline(deadline);
+                task.setStatus("pending");
+                task.setSourceType("plan");
+                task.setSourceId(plan.getId());
+                task.setNeedReview(0);
+                task.setCreatedAt(now);
+                task.setUpdatedAt(now);
+
+                if ("购买任务".equals(draft.categoryLabel)) {
+                    // 购买任务:一次性,完成后解锁每日使用子任务
+                    task.setRepeatType("none");
+                    task.setTaskType("onetime");
+                    task.setFrequency(null);
+                    task.setCategory(draft.categoryLabel);
+                    task.setDimensionCode(draft.dimensionCode);
+                    taskMapper.insert(task);
+                    buyTaskId = task.getId();
+                    log.info("方案{}生成购买任务(一次性): [{}] {}", plan.getId(), draft.categoryLabel, draft.title);
+                } else if ("使用任务".equals(draft.categoryLabel)) {
+                    // 每日使用/服用子任务:父购买任务完成前不显示;父任务完成时生成/生效
+                    task.setRepeatType("daily");
+                    task.setTaskType("recurring");
+                    task.setFrequency("daily");
+                    task.setCategory(draft.categoryLabel);
+                    task.setDimensionCode(draft.dimensionCode);
+                    task.setParentTaskId(buyTaskId != null ? buyTaskId : draft.parentTaskId);
+                    taskMapper.insert(task);
+                    log.info("方案{}生成每日使用子任务: [{}] {} (parent={})",
+                        plan.getId(), draft.categoryLabel, draft.title, task.getParentTaskId());
+                } else {
+                    // 常规任务:每日重复
+                    task.setRepeatType("daily");
+                    task.setTaskType("recurring");
+                    task.setFrequency("daily");
+                    task.setCategory(draft.categoryLabel);
+                    task.setDimensionCode(draft.dimensionCode);
+                    taskMapper.insert(task);
+                    log.info("方案{}生成任务: [{}] {}", plan.getId(), draft.categoryLabel, draft.title);
+                }
+            }
         }
     }
 
@@ -327,7 +414,7 @@ public class HealthPlanServiceImpl implements HealthPlanService {
         return plan;
     }
 
-    @Override
+@Override
     public HealthPlan rejectPlan(Long planId, Long reviewedBy, String comment) {
         HealthPlan plan = healthPlanMapper.selectById(planId);
         if (plan == null) throw new RuntimeException("方案不存在");
@@ -340,6 +427,98 @@ public class HealthPlanServiceImpl implements HealthPlanService {
         return plan;
     }
 
+    // 待生成任务的草稿:标题 + 类别中文标签 + 五维维度码 + 父任务ID(购买→使用链)
+    private static class TaskDraft {
+        final String title;
+        final String categoryLabel;
+        final String dimensionCode;
+        Long parentTaskId;
+        TaskDraft(String title, String categoryLabel, String dimensionCode) {
+            this.title = title;
+            this.categoryLabel = categoryLabel;
+            this.dimensionCode = dimensionCode;
+        }
+    }
+
+    // 购买动作后半段的"商品短语":从购买行中提炼可购买/可服用的商品名
+    private static final Pattern PURCHASE_PRODUCT = Pattern.compile(
+        "(?:购买|购置|采购|下单|买入|囤|选购|补充)([\\s\\S]{1,20}?)(?:[。;,.,]|$)"
+    );
+
+    /**
+     * 动作筛选与分类:返回待生成的任务草稿列表,纯原理/机制描述返回 null。
+     * 分类优先级:购买 > 阅读 > 运动 > 打卡 > 饮食 > 活动。
+     * 购买任务返回两条:①一次性购买任务(父) ②每日使用/服用子任务(parentTaskId 指向购买任务),
+     * 子任务在父任务完成前不显示(由查询侧过滤),完成后开始每日使用。
+     * 全部不中若命中机制词(通路/机制/分泌等抽象语境)则视为纯原理过滤。
+     */
+    private List<TaskDraft> classifyTaskLine(String line) {
+        if (line == null || line.trim().isEmpty()) return null;
+        String title = line.trim();
+        Matcher pm = ACTION_PURCHASE.matcher(title);
+        if (pm.find()) {
+            List<TaskDraft> drafts = new java.util.ArrayList<>();
+            // ① 一次性购买任务(wealth),完成后解锁每日使用
+            TaskDraft buy = new TaskDraft(title, "购买任务", "wealth");
+            drafts.add(buy);
+            // ② 每日使用/服用子任务,父任务完成前不可见
+            String product = extractPurchaseProduct(title);
+            if (product != null && !product.isEmpty()) {
+                String useVerb = matchUseVerb(product);
+                TaskDraft sub = new TaskDraft(useVerb + product, "使用任务", "body");
+                drafts.add(sub);
+            }
+            return drafts;
+        }
+        if (ACTION_READING.matcher(title).find()) {
+            return java.util.Collections.singletonList(new TaskDraft(title, "阅读任务", "wisdom"));
+        }
+        if (ACTION_EXERCISE.matcher(title).find()) {
+            return java.util.Collections.singletonList(new TaskDraft(title, "运动任务", "body"));
+        }
+        if (ACTION_CHECKIN.matcher(title).find()) {
+            return java.util.Collections.singletonList(new TaskDraft(title, "打卡任务", "mind"));
+        }
+        if (ACTION_DIET.matcher(title).find()) {
+            return java.util.Collections.singletonList(new TaskDraft(title, "饮食任务", "body"));
+        }
+        if (ACTION_ACTIVITY.matcher(title).find()) {
+            return java.util.Collections.singletonList(new TaskDraft(title, "活动任务", "action"));
+        }
+        // 无任何动作词命中:若包含机制/原理语境词,判定为纯原理描述,不生成任务
+        if (MECHANISM_PATTERN.matcher(title).find()) {
+            log.info("任务动作筛选:跳过纯原理描述: {}", title);
+            return null;
+        }
+        // 无法确认是实际动作的普通行:保守过滤,避免生成无意义任务
+        return null;
+    }
+
+    // 从购买行提炼商品名(截取购买词之后到句尾/标点)
+    private String extractPurchaseProduct(String title) {
+        Matcher m = PURCHASE_PRODUCT.matcher(title);
+        if (m.find()) {
+            String prod = m.group(1).trim();
+            if (!prod.isEmpty()) return prod;
+        }
+        return null;
+    }
+
+    // 根据商品名选择使用/服用/食用动词
+    private String matchUseVerb(String product) {
+        if (patternContains(product, "(?:片|胶囊|粉|剂|液|滴|丸|锭|颗粒|冲剂|补充|菌|油|素|丸)")) {
+            return "服用";
+        }
+        if (patternContains(product, "(?:茶|汤|饮|汁|食|膏)")) {
+            return "食用";
+        }
+        return "使用";
+    }
+
+    private boolean patternContains(String text, String regex) {
+        return java.util.regex.Pattern.compile(regex).matcher(text).find();
+    }
+
     @Override
     public List<Map<String, Object>> getAvailableTeachers(Long familyId) {
         List<Map<String, Object>> result = new java.util.ArrayList<>();
@@ -397,4 +576,4 @@ public class HealthPlanServiceImpl implements HealthPlanService {
         }
         return result;
     }
-}
+}

+ 4769 - 0
cfc-backend/uploads/json-results/20260820_090035_result.json

@@ -0,0 +1,4769 @@
+{
+  "draftId" : 36,
+  "payload" : {
+    "summary" : {
+      "overallScore" : 57,
+      "gutHealthScore" : 76,
+      "chronicDiseaseScore" : 64,
+      "nutritionScore" : 30,
+      "balanceScore" : 38,
+      "diversityScore" : 50,
+      "beneficialScore" : 22,
+      "harmfulScore" : 26,
+      "coreGenusScore" : 85,
+      "gutAge" : null,
+      "gutType" : null,
+      "shannonIndex" : null,
+      "reportNumber" : "501999942",
+      "reportDate" : null,
+      "personName" : "某人",
+      "gender" : "male",
+      "age" : 53,
+      "birthday" : null
+    },
+    "indicators" : [ {
+      "category" : "主要营养评估",
+      "indicatorName" : "碳水化合物",
+      "indicatorValue" : "96",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "蛋白质",
+      "indicatorValue" : "44",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "脂肪",
+      "indicatorValue" : "71",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "纤维素",
+      "indicatorValue" : "96",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "乳制品",
+      "indicatorValue" : "36",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "苏氨酸",
+      "indicatorValue" : "10",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "异亮氨酸",
+      "indicatorValue" : "3",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "亮氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "赖氨酸",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "蛋氨酸",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "胱氨酸",
+      "indicatorValue" : "86",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "苯丙氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "酪氨酸",
+      "indicatorValue" : "47",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "缬氨酸",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "组氨酸",
+      "indicatorValue" : "40",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "丙氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "谷氨酸",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "甘氨酸",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "脯氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "丝氨酸",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素A",
+      "indicatorValue" : "84",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B1",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B2",
+      "indicatorValue" : "77",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B5",
+      "indicatorValue" : "64",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B6",
+      "indicatorValue" : "38",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B12",
+      "indicatorValue" : "25",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素C",
+      "indicatorValue" : "31",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素D",
+      "indicatorValue" : "93",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "叶酸",
+      "indicatorValue" : "35",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素K2",
+      "indicatorValue" : "75",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "微量元素评估",
+      "indicatorName" : "铁",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "微量元素评估",
+      "indicatorName" : "锌",
+      "indicatorValue" : "52",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "β-内酰胺酶类",
+      "indicatorValue" : "20",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "氨基糖苷类",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "大环内酯类",
+      "indicatorValue" : "39",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "呋喃类",
+      "indicatorValue" : "82",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "喹诺酮类",
+      "indicatorValue" : "30",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "磺胺类",
+      "indicatorValue" : "61",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "甲氧苄啶类",
+      "indicatorValue" : "55",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "氯霉素类",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "四环素类",
+      "indicatorValue" : "48",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道炎症水平",
+      "indicatorValue" : "16",
+      "unit" : "",
+      "refRange" : "0-80",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道产气",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "0-50",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道屏障",
+      "indicatorValue" : "65",
+      "unit" : "",
+      "refRange" : "15-100",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "脂多糖LPS",
+      "indicatorValue" : "58",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "次级胆汁酸",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "对甲酚(p-Cresol)",
+      "indicatorValue" : "54",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "吲哚",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "15-90",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "苯酚",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "腐胺",
+      "indicatorValue" : "4",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "硫化氢",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "尸胺",
+      "indicatorValue" : "21",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "丁酸盐(Butyrate)",
+      "indicatorValue" : "14",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "丙酸盐(Propionate)",
+      "indicatorValue" : "71",
+      "unit" : "",
+      "refRange" : "15-90",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "乙酸盐(Acetate)",
+      "indicatorValue" : "21",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "异戊酸盐(Isovaleric)",
+      "indicatorValue" : "6",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "血清素(5-HT)",
+      "indicatorValue" : "57",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "γ-氨基丁酸(GABA)",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "15-85",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "谷氨酸(Glutamate)",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "色氨酸(Tryptophan)",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "DOPAC",
+      "indicatorValue" : "19",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "多巴胺",
+      "indicatorValue" : "94",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "组胺(Histamine)",
+      "indicatorValue" : "67",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "一氧化氮",
+      "indicatorValue" : "73",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "喹啉(Quinolinic)",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "0-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "维生素K2",
+      "indicatorValue" : "75",
+      "unit" : "",
+      "refRange" : "15-99",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "肌醇(Inositol)",
+      "indicatorValue" : "31",
+      "unit" : "",
+      "refRange" : "15-99",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "幽门螺杆菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "艰难梭菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "沙门氏菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "志贺氏菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "弯曲杆菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    } ],
+    "gutFlora" : [ {
+      "bacteriaName" : "梭菌属 Clostridium",
+      "bacteriaValue" : "0.2787",
+      "normalRange" : "0.0306-6.9615",
+      "populationLevel" : "23%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:多导致人体炎症;致病;导致菌群失衡;产丁酸;肥胖人群丰度较高;参与胆汁酸代谢;对抗艰难梭菌;",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普雷沃氏菌属 Prevotella",
+      "bacteriaValue" : "60.0857",
+      "normalRange" : "0.3652-81.2736",
+      "populationLevel" : "96%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:核心菌,健康的植物性饮食相关菌,在自闭症、多发性硬化中减少;丰度高促炎,加剧过敏、",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃球菌属 Ruminococcus",
+      "bacteriaValue" : "1.6504",
+      "normalRange" : "0.266-33.2664",
+      "populationLevel" : "66%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:消化抗性淀粉、纤维素,丰度高促进肠炎和过敏相关疾病,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌属 Bacteroides",
+      "bacteriaValue" : "13.2781",
+      "normalRange" : "1.0292-55.9251",
+      "populationLevel" : "35%",
+      "detectionRate" : "99.04%",
+      "description" : "说明:基石菌,消化蔬菜和谷食,蛋白,降解复杂多糖,交叉喂养关键菌,维持免疫和肠道稳态,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "优杆菌属 Eubacterium",
+      "bacteriaValue" : "0.1712",
+      "normalRange" : "0.0574-5.8432",
+      "populationLevel" : "35%",
+      "detectionRate" : "98.56%",
+      "description" : "说明:基石菌,产短链脂肪酸尤其丁酸,有助于肠道健康,降解胆固醇、调节餐后血糖、",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Lachnoclostridium",
+      "bacteriaValue" : "0.2093",
+      "normalRange" : "0.117-6.2036",
+      "populationLevel" : "27%",
+      "detectionRate" : "98.56%",
+      "description" : "说明:丁酸,与内脏脂肪积累相关,与肥胖、高血压、糖尿病正相关,与肠道炎症、肠癌和阿尔茨海默病进展有关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪杆菌属 Faecalibacterium",
+      "bacteriaValue" : "3.2406",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "5.1543-18.1656",
+      "bacteriaValue" : "59%",
+      "normalRange" : "",
+      "populationLevel" : "98.08%",
+      "detectionRate" : "",
+      "description" : "说明:基石菌,丁酸生产菌,下一代",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "经黏液真杆菌属 Blautia",
+      "bacteriaValue" : "0.1206",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "0.3366-3.237",
+      "bacteriaValue" : "21%",
+      "normalRange" : "",
+      "populationLevel" : "97.60%",
+      "detectionRate" : "",
+      "description" : "说明:消化复合碳水化合物,健康菌,偏低与炎症肠病,营养不良相关,减肥有效菌,缓解炎症性疾病和代谢疾病,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "戴阿利斯特杆菌属 Dialister",
+      "bacteriaValue" : "0.0769",
+      "normalRange" : "0-13.9606",
+      "populationLevel" : "46%",
+      "detectionRate" : "96.15%",
+      "description" : "说明:代谢碳水化合物、产短链脂肪酸,许多种都可能导致感染,但是抑郁症患者缺乏,关节炎患者富集,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏菌属 Roseburia",
+      "bacteriaValue" : "1.1301",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "2.0832-31.457",
+      "bacteriaValue" : "57%",
+      "normalRange" : "",
+      "populationLevel" : "96.15%",
+      "detectionRate" : "",
+      "description" : "说明:基石菌,产丁酸,丙酸,乙酸,影响结肠运动,具抗炎特性,分解不可消化的碳水化合物,百岁老人富集,抗炎,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "直肠真杆菌属 Agathobacter",
+      "bacteriaValue" : "0.1342",
+      "normalRange" : "0-10.7816",
+      "populationLevel" : "40%",
+      "detectionRate" : "95.67%",
+      "description" : "说明:可利用抗性淀粉,具有抗炎和调节免疫功能的作用,类风湿性关节炎和溃疡性结肠炎人群显著减少。",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "吉米菌属 Gemmiger",
+      "bacteriaValue" : "0.1955",
+      "normalRange" : "0-5.149",
+      "populationLevel" : "40%",
+      "detectionRate" : "95.67%",
+      "description" : "说明:健康饮食,高果蔬、谷物及豆类饮食含量高,与雄激素分泌相关,缓解便秘,与脂肪堆积分布负相关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副拟杆菌属 Parabacteroides",
+      "bacteriaValue" : "0.7216",
+      "normalRange" : "0-5.433",
+      "populationLevel" : "45%",
+      "detectionRate" : "95.19%",
+      "description" : "说明:帮助糖脂代谢,改善高脂影响,产生强大的降解酶,参与胆碱代谢,顺产宝宝和长寿老人肠道丰富,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "另枝菌属 Alistipes",
+      "bacteriaValue" : "1.0104",
+      "normalRange" : "0-20.1524",
+      "populationLevel" : "71%",
+      "detectionRate" : "91.83%",
+      "description" : "说明:耐胆汁酸菌,丙酸,乙酸生产者,参与腐败途径产生氨、H2S、甲酚、吲哚和苯酚,诱发结直肠癌,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "毛螺菌属 Lachnospira",
+      "bacteriaValue" : "0.1943",
+      "normalRange" : "0-4.805",
+      "populationLevel" : "60%",
+      "detectionRate" : "88.94%",
+      "description" : "说明:基石菌,发酵代谢膳食纤维,利用果蔬果㬵产生乙酸,丁酸,与睡眠质量呈负相关,过少与多种疾病相关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "考拉杆菌属 Phascolarctobacterium",
+      "bacteriaValue" : "0.0101",
+      "normalRange" : "0-8.8711",
+      "populationLevel" : "19%",
+      "detectionRate" : "88.94%",
+      "description" : "说明:东方人肠道的核心菌属,高易减肥,与水果蔬菜摄入相关,随年龄增加,在重度抑郁、阿尔茨海默病(AD)、自闭症儿童富集,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "巨单胞菌属 Megamonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-21.672",
+      "populationLevel" : "29%",
+      "detectionRate" : "87.50%",
+      "description" : "说明:发酵各种碳水化合物、产乙酸、丙酸、乳酸,自闭症谱系障碍、注意缺陷、多动障碍 (ADHD)急性脑卒中(AIS)",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪球菌属 Coprococcus",
+      "bacteriaValue" : "1.8668",
+      "normalRange" : "0-3.618",
+      "populationLevel" : "94%",
+      "detectionRate" : "86.06%",
+      "description" : "说明:可产丁酸,抑制免疫反应,降低过敏,抑郁、帕金森、认知障碍、便秘,慢性肾病、虚弱者减少,过多导致菌群紊乱,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌属 Bifidobacterium",
+      "bacteriaValue" : "0.2396",
+      "normalRange" : "0.1914-14.598",
+      "populationLevel" : "50%",
+      "detectionRate" : "97.12%",
+      "description" : "说明:最重要的",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "埃希氏菌属 Escherichia",
+      "bacteriaValue" : "0.0202",
+      "normalRange" : "0-9.3023",
+      "populationLevel" : "9%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:正常菌属,条件致病菌,过多致病,导致菌群失衡",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Streptococcus",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-1.3257",
+      "populationLevel" : "7%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:可引起化脓性炎症,个别菌为",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌属 Desulfovibrio",
+      "bacteriaValue" : "0.4734",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "0-0.0999",
+      "bacteriaValue" : "95%",
+      "normalRange" : "",
+      "populationLevel" : "33.65%",
+      "detectionRate" : "",
+      "description" : "说明:属于变形菌门,产生硫化氢,导致炎症、腹泻,对肠道上皮具有毒性,导致胃肠道疾病,约50%人群的口腔和肠道会携带,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "螺杆菌属 Helicobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.036",
+      "populationLevel" : "86%",
+      "detectionRate" : "22.12%",
+      "description" : "说明:革兰氏阴性菌,微需氧菌,该菌属下的一些菌种被发现在人类上消化道内壁,部分种为致病菌,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "弓形菌属 Arcobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0066",
+      "populationLevel" : "96%",
+      "detectionRate" : "7.69%",
+      "description" : "说明:好氧菌,腹泻致病菌,与河流海洋污染相关的潜在病原菌,人畜共患菌",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "厌氧螺菌 Anaerobiospirillum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "99%",
+      "bacteriaValue" : "0.00%",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "说明:引起腹泻,感染,常见于猫狗体内,过多会导致菌群紊乱",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠球菌属 Enterococcus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-1.1362",
+      "populationLevel" : "41%",
+      "detectionRate" : "81.25%",
+      "description" : "说明:常见上呼吸道,口腔或肠道的常居菌,也分布在畜、禽养殖环境,饲料或肠道,抑菌调节肠道菌群,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "奈瑟氏菌属 Neisseria",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.05",
+      "populationLevel" : "80%",
+      "detectionRate" : "46.15%",
+      "description" : "说明:部分为人体病原菌,口腔,唾液,鼻腔,肺部正常菌,需氧,对干燥、热、消毒剂敏感,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "不动杆菌属 Acinetobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.2475",
+      "populationLevel" : "57%",
+      "detectionRate" : "45.19%",
+      "description" : "说明:条件致病菌,医院感染病原体之一,尤其ICU,易引起呼吸道感染、泌尿道感染、创伤感染,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "假单胞菌属 Pseudomonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0864",
+      "populationLevel" : "54%",
+      "detectionRate" : "45.19%",
+      "description" : "说明:属于变形菌门,在环境中广泛存在,代谢多变适应力强,好氧或微需,会导致感染和食物变质,医院获得性感染主要原因,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "霍尔德曼氏菌属 Holdemania",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-0.0378",
+      "populationLevel" : "74%",
+      "detectionRate" : "29.33%",
+      "description" : "说明:肠道共生菌,降解黏蛋白,机会致病菌,少数研究表明与痛风正相关,帕金森,双向情感障碍,过敏,抑郁患者富集",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "柯林斯氏菌属 Collinsella",
+      "bacteriaValue" : "0.2801",
+      "normalRange" : "0-5.7436",
+      "populationLevel" : "77%",
+      "detectionRate" : "90.38%",
+      "description" : "说明:产气菌,与脂质代谢及心脑血管相关,过多可导致菌群紊乱,部分病原菌",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "嗜胆菌属 Bilophila",
+      "bacteriaValue" : "0.1352",
+      "normalRange" : "0-0.3348",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "说明:条件致病菌,与耐胆汁酸和脂肪摄入相关,便秘人群丰度更高",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Flavonifractor",
+      "bacteriaValue" : "0.0033",
+      "normalRange" : "0-0.415",
+      "populationLevel" : "20%",
+      "detectionRate" : "91.83%",
+      "description" : "说明:参与肠道儿茶素代谢,减轻免疫反应,产丁酸",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Dorea菌属 Dorea",
+      "bacteriaValue" : "0.0501",
+      "normalRange" : "0.0144-2.49",
+      "populationLevel" : "32%",
+      "detectionRate" : "89.42%",
+      "description" : "说明:消化碳水化合物,多发性硬化症、炎症性肠病、结直肠癌、自闭症谱系障碍以及肥胖人群中高丰度富集,",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "亨盖特氏菌属 Hungatella",
+      "bacteriaValue" : "0.1249",
+      "normalRange" : "0-0.8235",
+      "populationLevel" : "64%",
+      "detectionRate" : "89.42%",
+      "description" : "说明:参与生成氧化三甲胺和牛磺酸。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "颤螺菌属 Oscillospira",
+      "bacteriaValue" : "0.2999",
+      "normalRange" : "0.0126-0.8558",
+      "populationLevel" : "81%",
+      "detectionRate" : "87.50%",
+      "description" : "说明:基石菌、核心菌群,帮助消化抗性淀粉,产丁酸,并在大肠中发酵。与儿童过敏和肥胖呈负相关。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "枸橼酸杆菌属 Citrobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0668",
+      "populationLevel" : "37%",
+      "detectionRate" : "78.37%",
+      "description" : "说明:常见菌,免疫力下降可能引发感染。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Akkermansia",
+      "bacteriaValue" : "0.0135",
+      "normalRange" : "0.0018-7.8352",
+      "populationLevel" : "49%",
+      "detectionRate" : "74.52%",
+      "description" : "说明:基石菌,可降解淀粉,黏蛋白降解菌,可控制体重,改善代谢和炎症,过多导致肠粘膜屏障破坏。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌属 Enterobacter",
+      "bacteriaValue" : "0.0067",
+      "normalRange" : "0-0.083",
+      "populationLevel" : "60%",
+      "detectionRate" : "63.46%",
+      "description" : "说明:产酸产气,不引起腹泻,机会性感染,过多导致菌群紊乱和肥胖。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "苏黎世杆菌属 Turicibacter",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-0.2352",
+      "populationLevel" : "73%",
+      "detectionRate" : "49.52%",
+      "description" : "说明:发酵生成乳酸,参与肌肉和疲劳调节。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丁酸弧菌属 Butyrivibrio",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.8134",
+      "populationLevel" : "70%",
+      "detectionRate" : "35.58%",
+      "description" : "说明:利用纤维素、淀粉和其他多聚糖生成丁酸,有助于维持肠道上皮,发挥抗炎、抗氧化作用。可调节体内的氨水平,影响免疫。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "克里斯滕森氏菌属 Christensenella",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0072",
+      "populationLevel" : "82%",
+      "detectionRate" : "5.77%",
+      "description" : "说明:过多:肥胖,代谢综合征,包括高血压、高血糖、异常胆固醇水平和腹部肥胖,胰岛素抵抗",
+      "category" : "其它重要菌属",
+      "level" : ""
+    } ],
+    "probioticSpecies" : [ {
+      "bacteriaName" : "乳杆菌属 Lactobacillus",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏乳杆菌 Lactobacillus rogosae",
+      "bacteriaValue" : "0.737%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "76.92%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌属 Bifidobacterium",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "50%",
+      "detectionRate" : "97.12%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "青春双歧杆菌 Bifidobacterium adolescentis",
+      "bacteriaValue" : "0.209%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "95.67%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "长双歧杆菌 Bifidobacterium longum",
+      "bacteriaValue" : "0.027%",
+      "normalRange" : "",
+      "populationLevel" : "91%",
+      "detectionRate" : "73.08%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗伊氏乳杆菌 Lactobacillus reuteri",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "0.96%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧双歧杆菌 Bifidobacterium bifidum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "链状双歧杆菌 Bifidobacterium catenulatum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "假长双歧杆菌 Bifidobacterium pseudolongum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "高卢双歧杆菌 Bifidobacterium gallicum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "排泄物双岐杆菌 Bifidobacterium stercoris",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副干酪乳杆菌 Lactobacillus paracasei",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "植物乳杆菌 Lactobacillus plantarum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "约氏乳杆菌 Lactobacillus johnsonii",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瑞士乳杆菌 Lactobacillus helveticus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "动物双歧杆菌 Bifidobacterium animalis",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "发酵乳杆菌 Lactobacillus fermentum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "短双歧杆菌 Bifidobacterium breve",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "鼠李糖乳杆菌 Lactobacillus rhamnosus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "短乳杆菌 Lactobacillus brevis",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "德氏乳酸乳杆菌 Lactobacillus delbrueckii",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "嗜酸乳杆菌 Lactobacillus acidophilus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    } ],
+    "taxonomyClass" : [ {
+      "bacteriaName" : "拟杆菌纲 Bacteroidia",
+      "bacteriaValue" : "76.721%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "98.00%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌纲 Clostridia",
+      "bacteriaValue" : "17.067%",
+      "normalRange" : "",
+      "populationLevel" : "26%",
+      "detectionRate" : "98.87%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "芽孢杆菌纲 Bacilli",
+      "bacteriaValue" : "1.594%",
+      "normalRange" : "",
+      "populationLevel" : "81%",
+      "detectionRate" : "86.08%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "德耳塔变形杆菌纲 Deltaproteobacteria",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "88%",
+      "detectionRate" : "60.76%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "β-变形菌纲 Betaproteobacteria",
+      "bacteriaValue" : "0.409%",
+      "normalRange" : "",
+      "populationLevel" : "38%",
+      "detectionRate" : "74.47%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌纲 Coriobacteriia",
+      "bacteriaValue" : "0.283%",
+      "normalRange" : "",
+      "populationLevel" : "79%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线杆菌纲 Actinobacteria",
+      "bacteriaValue" : "0.249%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "87.94%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Erysipelotrichi",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "68.47%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "γ-变形菌纲 Gammaproteobacteria",
+      "bacteriaValue" : "0.111%",
+      "normalRange" : "",
+      "populationLevel" : "8%",
+      "detectionRate" : "88.68%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Lentisphaeria",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "疣微菌纲 Verrucomicrobiae",
+      "bacteriaValue" : "0.013%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "53.76%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "柔膜体纲 Mollicutes",
+      "bacteriaValue" : "0.007%",
+      "normalRange" : "",
+      "populationLevel" : "71%",
+      "detectionRate" : "29.01%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "互养菌纲 Synergistia",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "24.61%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    } ],
+    "taxonomyOrder" : [ {
+      "bacteriaName" : "拟杆菌目 Bacteroidales",
+      "bacteriaValue" : "76.721%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "98.00%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌目 Clostridiales",
+      "bacteriaValue" : "11.473%",
+      "normalRange" : "",
+      "populationLevel" : "20%",
+      "detectionRate" : "98.87%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌目 Lactobacillales",
+      "bacteriaValue" : "0.753%",
+      "normalRange" : "",
+      "populationLevel" : "72%",
+      "detectionRate" : "85.51%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌目 Desulfovibrionales",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "58.79%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "伯克氏菌目 Burkholderiales",
+      "bacteriaValue" : "0.409%",
+      "normalRange" : "",
+      "populationLevel" : "39%",
+      "detectionRate" : "74.19%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌目 Coriobacteriales",
+      "bacteriaValue" : "0.283%",
+      "normalRange" : "",
+      "populationLevel" : "79%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌目 Bifidobacteriales",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "51%",
+      "detectionRate" : "84.99%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丹毒丝菌目 Erysipelotrichales",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "65.82%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌目 Enterobacteriales",
+      "bacteriaValue" : "0.111%",
+      "normalRange" : "",
+      "populationLevel" : "12%",
+      "detectionRate" : "87.83%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Victivallales",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "疣微菌目 Verrucomicrobiales",
+      "bacteriaValue" : "0.013%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "53.76%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "互养菌目 Synergistales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "24.61%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线菌目 Actinomycetales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "19%",
+      "detectionRate" : "58.40%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "芽孢杆菌目 Bacillales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "53%",
+      "detectionRate" : "42.30%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    } ],
+    "taxonomyFamily" : [ {
+      "bacteriaName" : "普雷沃氏菌科 Prevotellaceae",
+      "bacteriaValue" : "60.109%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "90.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌科 Bacteroidaceae",
+      "bacteriaValue" : "13.968%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "96.10%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃菌科 Ruminococcaceae",
+      "bacteriaValue" : "6.559%",
+      "normalRange" : "",
+      "populationLevel" : "44%",
+      "detectionRate" : "96.52%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "毛螺旋菌科 Lachnospiraceae",
+      "bacteriaValue" : "4.068%",
+      "normalRange" : "",
+      "populationLevel" : "28%",
+      "detectionRate" : "98.03%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "理化所菌科 Rikenellaceae",
+      "bacteriaValue" : "1.037%",
+      "normalRange" : "",
+      "populationLevel" : "88%",
+      "detectionRate" : "85.69%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌科 Lactobacillaceae",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "93%",
+      "detectionRate" : "62.55%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌科 Desulfovibrionaceae",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "58.79%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌科 Clostridiaceae",
+      "bacteriaValue" : "0.434%",
+      "normalRange" : "",
+      "populationLevel" : "74%",
+      "detectionRate" : "67.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌科 Coriobacteriaceae",
+      "bacteriaValue" : "0.280%",
+      "normalRange" : "",
+      "populationLevel" : "78%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌科 Bifidobacteriaceae",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "51%",
+      "detectionRate" : "84.99%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "卟啉单胞菌科 Porphyromonadaceae",
+      "bacteriaValue" : "0.181%",
+      "normalRange" : "",
+      "populationLevel" : "29%",
+      "detectionRate" : "66.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丹毒丝菌科 Erysipelotrichaceae",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "65.82%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "消化球菌科 Peptococcaceae",
+      "bacteriaValue" : "0.088%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "25.00%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌科 Enterobacteriaceae",
+      "bacteriaValue" : "0.064%",
+      "normalRange" : "",
+      "populationLevel" : "11%",
+      "detectionRate" : "87.83%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "食谷菌科 Victivallaceae",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "消化链球菌科 Peptostreptococcaceae",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "93%",
+      "detectionRate" : "18.53%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "克里斯滕森氏菌科 Christensenellaceae",
+      "bacteriaValue" : "0.023%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "40.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "链球菌科 Streptococcaceae",
+      "bacteriaValue" : "0.010%",
+      "normalRange" : "",
+      "populationLevel" : "17%",
+      "detectionRate" : "69.20%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线菌科 Actinomycetaceae",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "27%",
+      "detectionRate" : "46.06%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "草酸杆菌科 Oxalobacteraceae",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "41.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    } ],
+    "taxonomyGenus" : [ {
+      "bacteriaName" : "普雷沃氏菌属 Prevotella",
+      "bacteriaValue" : "60.086%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌属 Bacteroides",
+      "bacteriaValue" : "13.278%",
+      "normalRange" : "",
+      "populationLevel" : "35%",
+      "detectionRate" : "99.04%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪杆菌属 Faecalibacterium",
+      "bacteriaValue" : "3.241%",
+      "normalRange" : "",
+      "populationLevel" : "59%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪球菌属 Coprococcus",
+      "bacteriaValue" : "1.867%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "86.06%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "光岗氏菌属 Mitsuokella",
+      "bacteriaValue" : "1.776%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "15.87%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃球菌属 Ruminococcus",
+      "bacteriaValue" : "1.650%",
+      "normalRange" : "",
+      "populationLevel" : "66%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-127",
+      "bacteriaValue" : "1.534%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "58.65%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏菌属 Roseburia",
+      "bacteriaValue" : "1.130%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "96.15%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "别样杆菌属 Alistipes",
+      "bacteriaValue" : "1.010%",
+      "normalRange" : "",
+      "populationLevel" : "71%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌属 Lactobacillus",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副拟杆菌属 Parabacteroides",
+      "bacteriaValue" : "0.722%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "95.19%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Mediterranea",
+      "bacteriaValue" : "0.690%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "4.81%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-83",
+      "bacteriaValue" : "0.614%",
+      "normalRange" : "",
+      "populationLevel" : "83%",
+      "detectionRate" : "76.44%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-110",
+      "bacteriaValue" : "0.529%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "71.15%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-1000",
+      "bacteriaValue" : "0.493%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "18.27%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌属 Desulfovibrio",
+      "bacteriaValue" : "0.473%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "33.65%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-180",
+      "bacteriaValue" : "0.459%",
+      "normalRange" : "",
+      "populationLevel" : "72%",
+      "detectionRate" : "86.54%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "ER4",
+      "bacteriaValue" : "0.412%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "60.58%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "UBA11524",
+      "bacteriaValue" : "0.402%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "49.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "颤螺菌属 Oscillospira",
+      "bacteriaValue" : "0.300%",
+      "normalRange" : "",
+      "populationLevel" : "81%",
+      "detectionRate" : "87.50%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    } ],
+    "taxonomySpecies" : [ {
+      "bacteriaName" : "普氏菌 Prevotella copri",
+      "bacteriaValue" : "33.924%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "98.56%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp000434975",
+      "bacteriaValue" : "18.505%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "92.79%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪便拟杆菌 Bacteroides stercoris",
+      "bacteriaValue" : "3.939%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "97.12%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌 Bacteroides coprophilus",
+      "bacteriaValue" : "3.335%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "37.02%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普氏栖粪杆菌 Faecalibacterium prausnitzii",
+      "bacteriaValue" : "3.046%",
+      "normalRange" : "",
+      "populationLevel" : "58%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp002265625",
+      "bacteriaValue" : "2.815%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "24.04%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪居拟杆菌 Bacteroides coprocola",
+      "bacteriaValue" : "2.175%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "79.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "贾氏光岗氏菌 Mitsuokella jalaludinii",
+      "bacteriaValue" : "1.769%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "5.77%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普通拟杆菌 Bacteroides vulgatus",
+      "bacteriaValue" : "1.545%",
+      "normalRange" : "",
+      "populationLevel" : "44%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp002299635",
+      "bacteriaValue" : "1.446%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "51.44%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp000436695",
+      "bacteriaValue" : "1.082%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "15.38%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "规则粪球菌 Coprococcus eutactus",
+      "bacteriaValue" : "1.004%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "42.31%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Ruminococcus bicirculans",
+      "bacteriaValue" : "0.983%",
+      "normalRange" : "",
+      "populationLevel" : "92%",
+      "detectionRate" : "66.35%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏乳杆菌 Lactobacillus rogosae",
+      "bacteriaValue" : "0.737%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "76.92%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "食葡糖罗斯拜瑞氏菌 Roseburia inulinivorans",
+      "bacteriaValue" : "0.696%",
+      "normalRange" : "",
+      "populationLevel" : "76%",
+      "detectionRate" : "87.02%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Mediterranea massiliensis",
+      "bacteriaValue" : "0.690%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "3.85%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Coprococcus sp000154245",
+      "bacteriaValue" : "0.612%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "28.85%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "腐烂别样杆菌 Alistipes putredinis",
+      "bacteriaValue" : "0.551%",
+      "normalRange" : "",
+      "populationLevel" : "75%",
+      "detectionRate" : "79.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-83 sp000435555",
+      "bacteriaValue" : "0.534%",
+      "normalRange" : "",
+      "populationLevel" : "83%",
+      "detectionRate" : "73.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Parabacteroides sp000436495",
+      "bacteriaValue" : "0.497%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "4.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    } ],
+    "pathogenGenus" : [ {
+      "bacteriaName" : "嗜血杆菌属 Haemophilus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.7752",
+      "populationLevel" : "22%",
+      "detectionRate" : "94.23%",
+      "description" : "说明:病原菌,过多可导致菌群紊乱,可引发呼吸道感染,常见于呼吸道感染",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "沙门氏菌属 Salmonella",
+      "bacteriaValue" : "0.0236",
+      "normalRange" : "0-0.4104",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "说明:是引起食物中毒和肠道感染的常见病原菌之一",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "萨特氏菌属 Sutterella",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-2.266",
+      "populationLevel" : "21%",
+      "detectionRate" : "81.73%",
+      "description" : "说明:肠道共生菌,潜在病原菌,自闭症相关,减少IgA",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "棒杆菌属 Corynebacterium",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.2646",
+      "populationLevel" : "99%",
+      "detectionRate" : "52.88%",
+      "description" : "说明:可导致急性腹泻、腹痛、恶心",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "气单胞菌属 Aeromonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0334",
+      "populationLevel" : "80%",
+      "detectionRate" : "29.33%",
+      "description" : "说明:病原菌",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "葡萄球菌属 Staphylococcus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0105",
+      "populationLevel" : "78%",
+      "detectionRate" : "17.31%",
+      "description" : "说明:利用碳水化合物或氨基酸,产生乳酸。部分产生毒素,如金黄色葡萄球菌,可能引发肠道炎症、并影响肠道屏障功能",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Vibrio",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "99%",
+      "bacteriaValue" : "8.17%",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "说明:条件致病菌",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "沃氏嗜胆菌 Bilophila wadsworthia",
+      "bacteriaValue" : "0.135%",
+      "normalRange" : "",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠炎鼠伤寒沙门氏菌 Salmonella enterica",
+      "bacteriaValue" : "0.024%",
+      "normalRange" : "",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "大肠杆菌 Escherichia coli",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "10%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脆弱拟杆菌 Bacteroides fragilis",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "23%",
+      "detectionRate" : "93.27%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    } ],
+    "pathogenDetection" : [ {
+      "bacteriaName" : "沃氏嗜胆菌 Bilophila wadsworthia",
+      "bacteriaValue" : "0.135%",
+      "normalRange" : "",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠炎鼠伤寒沙门氏菌 Salmonella enterica",
+      "bacteriaValue" : "0.024%",
+      "normalRange" : "",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "大肠杆菌 Escherichia coli",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "10%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脆弱拟杆菌 Bacteroides fragilis",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "23%",
+      "detectionRate" : "93.27%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    } ],
+    "foods" : [ {
+      "name" : "大麦",
+      "category" : "主食",
+      "score" : 17,
+      "energyKj" : 1481,
+      "protein" : 12,
+      "fat" : 2,
+      "carbs" : 73,
+      "starch" : 0,
+      "fiber" : 17,
+      "cholesterol" : 0
+    }, {
+      "name" : "小米",
+      "category" : "主食",
+      "score" : 5,
+      "energyKj" : 1582,
+      "protein" : 11,
+      "fat" : 4,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "小麦",
+      "category" : "主食",
+      "score" : 10,
+      "energyKj" : 1423,
+      "protein" : 10,
+      "fat" : 1,
+      "carbs" : 75,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "小麦面包",
+      "category" : "主食",
+      "score" : -14,
+      "energyKj" : 1116,
+      "protein" : 10,
+      "fat" : 3,
+      "carbs" : 48,
+      "starch" : 36,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "意大利面",
+      "category" : "主食",
+      "score" : -4,
+      "energyKj" : 386,
+      "protein" : 1,
+      "fat" : 3,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "燕麦",
+      "category" : "主食",
+      "score" : 35,
+      "energyKj" : 297,
+      "protein" : 17,
+      "fat" : 6,
+      "carbs" : 66,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "玉米粒",
+      "category" : "主食",
+      "score" : 38,
+      "energyKj" : 298,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 14,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "米饭",
+      "category" : "主食",
+      "score" : -12,
+      "energyKj" : 1527,
+      "protein" : 7,
+      "fat" : 0,
+      "carbs" : 79,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "玉米饼",
+      "category" : "主食",
+      "score" : 7,
+      "energyKj" : 912,
+      "protein" : 5,
+      "fat" : 2,
+      "carbs" : 44,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "荞麦面粉",
+      "category" : "主食",
+      "score" : 0,
+      "energyKj" : 1402,
+      "protein" : 12,
+      "fat" : 3,
+      "carbs" : 70,
+      "starch" : 0,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄干浆即食谷物",
+      "category" : "主食",
+      "score" : 0,
+      "energyKj" : 1354,
+      "protein" : 7,
+      "fat" : 1,
+      "carbs" : 78,
+      "starch" : 0,
+      "fiber" : 13,
+      "cholesterol" : 0
+    }, {
+      "name" : "面条",
+      "category" : "主食",
+      "score" : -10,
+      "energyKj" : 1609,
+      "protein" : 14,
+      "fat" : 4,
+      "carbs" : 71,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 84
+    }, {
+      "name" : "鸡蛋面包",
+      "category" : "主食",
+      "score" : -11,
+      "energyKj" : 1201,
+      "protein" : 9,
+      "fat" : 6,
+      "carbs" : 47,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 51
+    }, {
+      "name" : "黑麦面包",
+      "category" : "主食",
+      "score" : -6,
+      "energyKj" : 1188,
+      "protein" : 9,
+      "fat" : 3,
+      "carbs" : 53,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "冰淇淋",
+      "category" : "乳制品",
+      "score" : -11,
+      "energyKj" : 690,
+      "protein" : 1,
+      "fat" : 3,
+      "carbs" : 32,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 8
+    }, {
+      "name" : "奶油",
+      "category" : "乳制品",
+      "score" : -20,
+      "energyKj" : 515,
+      "protein" : 3,
+      "fat" : 10,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 35
+    }, {
+      "name" : "奶酪",
+      "category" : "乳制品",
+      "score" : -8,
+      "energyKj" : 1552,
+      "protein" : 23,
+      "fat" : 29,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 94
+    }, {
+      "name" : "牛奶",
+      "category" : "乳制品",
+      "score" : 9,
+      "energyKj" : 268,
+      "protein" : 3,
+      "fat" : 3,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 14
+    }, {
+      "name" : "脱脂牛奶",
+      "category" : "乳制品",
+      "score" : 15,
+      "energyKj" : 142,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2
+    }, {
+      "name" : "黄油",
+      "category" : "乳制品",
+      "score" : -48,
+      "energyKj" : 2999,
+      "protein" : 0,
+      "fat" : 81,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 215
+    }, {
+      "name" : "山核桃",
+      "category" : "干果",
+      "score" : -15,
+      "energyKj" : 2889,
+      "protein" : 9,
+      "fat" : 71,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "山核桃干",
+      "category" : "干果",
+      "score" : -5,
+      "energyKj" : 2749,
+      "protein" : 12,
+      "fat" : 64,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "杏仁",
+      "category" : "干果",
+      "score" : -3,
+      "energyKj" : 2423,
+      "protein" : 21,
+      "fat" : 49,
+      "carbs" : 21,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "开心果",
+      "category" : "干果",
+      "score" : -13,
+      "energyKj" : 2392,
+      "protein" : 21,
+      "fat" : 45,
+      "carbs" : 28,
+      "starch" : 1,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "松子",
+      "category" : "干果",
+      "score" : -17,
+      "energyKj" : 2816,
+      "protein" : 13,
+      "fat" : 68,
+      "carbs" : 13,
+      "starch" : 1,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "栗子",
+      "category" : "干果",
+      "score" : 37,
+      "energyKj" : 1519,
+      "protein" : 6,
+      "fat" : 1,
+      "carbs" : 79,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "核桃",
+      "category" : "干果",
+      "score" : -10,
+      "energyKj" : 2738,
+      "protein" : 15,
+      "fat" : 65,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "椰肉",
+      "category" : "干果",
+      "score" : 0,
+      "energyKj" : 1481,
+      "protein" : 3,
+      "fat" : 33,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "榛子",
+      "category" : "干果",
+      "score" : 40,
+      "energyKj" : 2629,
+      "protein" : 14,
+      "fat" : 60,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "橡子",
+      "category" : "干果",
+      "score" : 36,
+      "energyKj" : 1619,
+      "protein" : 6,
+      "fat" : 23,
+      "carbs" : 40,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "腰果",
+      "category" : "干果",
+      "score" : -9,
+      "energyKj" : 2402,
+      "protein" : 15,
+      "fat" : 46,
+      "carbs" : 32,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "芝麻酱",
+      "category" : "干果",
+      "score" : 3,
+      "energyKj" : 2454,
+      "protein" : 18,
+      "fat" : 50,
+      "carbs" : 24,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "莲子",
+      "category" : "干果",
+      "score" : 53,
+      "energyKj" : 372,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葵花子",
+      "category" : "干果",
+      "score" : -1,
+      "energyKj" : 2445,
+      "protein" : 20,
+      "fat" : 51,
+      "carbs" : 20,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "银杏坚果",
+      "category" : "干果",
+      "score" : -8,
+      "energyKj" : 1456,
+      "protein" : 10,
+      "fat" : 2,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "比萨",
+      "category" : "快餐",
+      "score" : -12,
+      "energyKj" : 1121,
+      "protein" : 10,
+      "fat" : 12,
+      "carbs" : 29,
+      "starch" : 18,
+      "fiber" : 2,
+      "cholesterol" : 14
+    }, {
+      "name" : "热狗",
+      "category" : "快餐",
+      "score" : -17,
+      "energyKj" : 1167,
+      "protein" : 9,
+      "fat" : 3,
+      "carbs" : 50,
+      "starch" : 36,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "鸡米花",
+      "category" : "快餐",
+      "score" : -20,
+      "energyKj" : 1469,
+      "protein" : 17,
+      "fat" : 21,
+      "carbs" : 21,
+      "starch" : 18,
+      "fiber" : 1,
+      "cholesterol" : 40
+    }, {
+      "name" : "三文鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 594,
+      "protein" : 19,
+      "fat" : 6,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "凤尾鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 548,
+      "protein" : 20,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "墨鱼",
+      "category" : "水产品",
+      "score" : 8,
+      "energyKj" : 331,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 112
+    }, {
+      "name" : "大比目鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 382,
+      "protein" : 18,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 49
+    }, {
+      "name" : "大西洋鳕鱼",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 343,
+      "protein" : 17,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 43
+    }, {
+      "name" : "小龙虾",
+      "category" : "水产品",
+      "score" : 13,
+      "energyKj" : 322,
+      "protein" : 15,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 114
+    }, {
+      "name" : "扇贝",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 289,
+      "protein" : 12,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 2,
+      "fiber" : 0,
+      "cholesterol" : 24
+    }, {
+      "name" : "条纹鲈鱼",
+      "category" : "水产品",
+      "score" : 18,
+      "energyKj" : 406,
+      "protein" : 17,
+      "fat" : 2,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 80
+    }, {
+      "name" : "海鲈鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 332,
+      "protein" : 15,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 52
+    }, {
+      "name" : "牡蛎",
+      "category" : "水产品",
+      "score" : 14,
+      "energyKj" : 339,
+      "protein" : 9,
+      "fat" : 2,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "白鲑",
+      "category" : "水产品",
+      "score" : 10,
+      "energyKj" : 611,
+      "protein" : 17,
+      "fat" : 8,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 65
+    }, {
+      "name" : "石斑鱼",
+      "category" : "水产品",
+      "score" : 23,
+      "energyKj" : 385,
+      "protein" : 19,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 37
+    }, {
+      "name" : "章鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 343,
+      "protein" : 14,
+      "fat" : 1,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 48
+    }, {
+      "name" : "虾",
+      "category" : "水产品",
+      "score" : -2,
+      "energyKj" : 297,
+      "protein" : 13,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 126
+    }, {
+      "name" : "蛤蜊",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 360,
+      "protein" : 14,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 1,
+      "fiber" : 0,
+      "cholesterol" : 30
+    }, {
+      "name" : "蟹",
+      "category" : "水产品",
+      "score" : 13,
+      "energyKj" : 364,
+      "protein" : 18,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 78
+    }, {
+      "name" : "贻贝",
+      "category" : "水产品",
+      "score" : 4,
+      "energyKj" : 360,
+      "protein" : 11,
+      "fat" : 2,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 28
+    }, {
+      "name" : "金枪鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 602,
+      "protein" : 23,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 38
+    }, {
+      "name" : "鱼子酱",
+      "category" : "水产品",
+      "score" : -19,
+      "energyKj" : 1105,
+      "protein" : 24,
+      "fat" : 17,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 588
+    }, {
+      "name" : "鱿鱼",
+      "category" : "水产品",
+      "score" : 9,
+      "energyKj" : 385,
+      "protein" : 15,
+      "fat" : 1,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 233
+    }, {
+      "name" : "鲈鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 381,
+      "protein" : 19,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "鲍鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 439,
+      "protein" : 17,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 85
+    }, {
+      "name" : "鲟鱼",
+      "category" : "水产品",
+      "score" : 12,
+      "energyKj" : 439,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "鲤鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 531,
+      "protein" : 17,
+      "fat" : 5,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 66
+    }, {
+      "name" : "鲭鱼",
+      "category" : "水产品",
+      "score" : 4,
+      "energyKj" : 858,
+      "protein" : 18,
+      "fat" : 13,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 70
+    }, {
+      "name" : "鲱鱼",
+      "category" : "水产品",
+      "score" : 2,
+      "energyKj" : 661,
+      "protein" : 17,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "鲶鱼",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 519,
+      "protein" : 20,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 59
+    }, {
+      "name" : "鲷鱼",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 418,
+      "protein" : 20,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 37
+    }, {
+      "name" : "鲽鱼",
+      "category" : "水产品",
+      "score" : 3,
+      "energyKj" : 294,
+      "protein" : 12,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 45
+    }, {
+      "name" : "鳕鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 364,
+      "protein" : 18,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 41
+    }, {
+      "name" : "鳗鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 770,
+      "protein" : 18,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 126
+    }, {
+      "name" : "鳟鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 619,
+      "protein" : 20,
+      "fat" : 6,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 58
+    }, {
+      "name" : "沙丁鱼",
+      "category" : "水产品",
+      "score" : 19,
+      "energyKj" : 347,
+      "protein" : 0,
+      "fat" : 1,
+      "carbs" : 19,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄尾",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 611,
+      "protein" : 23,
+      "fat" : 5,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "龙虾",
+      "category" : "水产品",
+      "score" : 3,
+      "energyKj" : 324,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 127
+    }, {
+      "name" : "无花果",
+      "category" : "水果",
+      "score" : 15,
+      "energyKj" : 310,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 19,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "李子",
+      "category" : "水果",
+      "score" : 13,
+      "energyKj" : 192,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "杏",
+      "category" : "水果",
+      "score" : 2,
+      "energyKj" : 201,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "杨桃",
+      "category" : "水果",
+      "score" : 57,
+      "energyKj" : 128,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "枣",
+      "category" : "水果",
+      "score" : -6,
+      "energyKj" : 1176,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "柠檬",
+      "category" : "水果",
+      "score" : 58,
+      "energyKj" : 121,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "柿子",
+      "category" : "水果",
+      "score" : 16,
+      "energyKj" : 293,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "桃",
+      "category" : "水果",
+      "score" : 3,
+      "energyKj" : 165,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "桑葚",
+      "category" : "水果",
+      "score" : 50,
+      "energyKj" : 180,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "梨",
+      "category" : "水果",
+      "score" : 55,
+      "energyKj" : 239,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "榴莲",
+      "category" : "水果",
+      "score" : 43,
+      "energyKj" : 615,
+      "protein" : 1,
+      "fat" : 5,
+      "carbs" : 27,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "樱桃",
+      "category" : "水果",
+      "score" : 20,
+      "energyKj" : 1395,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 80,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "哈密瓜",
+      "category" : "水果",
+      "score" : 6,
+      "energyKj" : 141,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "橘子",
+      "category" : "水果",
+      "score" : 1,
+      "energyKj" : 197,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙汁",
+      "category" : "水果",
+      "score" : 47,
+      "energyKj" : 188,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙皮",
+      "category" : "水果",
+      "score" : 38,
+      "energyKj" : 405,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 25,
+      "starch" : 0,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙菠萝汁",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 214,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 12,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "油桃",
+      "category" : "水果",
+      "score" : 3,
+      "energyKj" : 185,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "猕猴桃",
+      "category" : "水果",
+      "score" : 32,
+      "energyKj" : 255,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜瓜",
+      "category" : "水果",
+      "score" : -4,
+      "energyKj" : 150,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "番木瓜",
+      "category" : "水果",
+      "score" : 32,
+      "energyKj" : 179,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "石榴",
+      "category" : "水果",
+      "score" : 46,
+      "energyKj" : 346,
+      "protein" : 1,
+      "fat" : 1,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "红苹果",
+      "category" : "水果",
+      "score" : 13,
+      "energyKj" : 247,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芒果",
+      "category" : "水果",
+      "score" : -11,
+      "energyKj" : 250,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "苹果",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 218,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "苹果汁",
+      "category" : "水果",
+      "score" : -19,
+      "energyKj" : 191,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "草莓",
+      "category" : "水果",
+      "score" : 37,
+      "energyKj" : 136,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "荔枝",
+      "category" : "水果",
+      "score" : 25,
+      "energyKj" : 276,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠萝",
+      "category" : "水果",
+      "score" : 1,
+      "energyKj" : 209,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠萝蜜",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 397,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 23,
+      "starch" : 1,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄",
+      "category" : "水果",
+      "score" : 40,
+      "energyKj" : 280,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄干",
+      "category" : "水果",
+      "score" : -38,
+      "energyKj" : 264,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄柚",
+      "category" : "水果",
+      "score" : 54,
+      "energyKj" : 134,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "蓝莓",
+      "category" : "水果",
+      "score" : 40,
+      "energyKj" : 240,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "蔓越莓",
+      "category" : "水果",
+      "score" : 33,
+      "energyKj" : 191,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "西瓜",
+      "category" : "水果",
+      "score" : 19,
+      "energyKj" : 127,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "覆盆子",
+      "category" : "水果",
+      "score" : 42,
+      "energyKj" : 220,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "面包果酱",
+      "category" : "水果",
+      "score" : 15,
+      "energyKj" : 431,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 27,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "香蕉",
+      "category" : "水果",
+      "score" : 10,
+      "energyKj" : 371,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 22,
+      "starch" : 5,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "鳄梨",
+      "category" : "水果",
+      "score" : 37,
+      "energyKj" : 670,
+      "protein" : 2,
+      "fat" : 14,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "黑莓",
+      "category" : "水果",
+      "score" : 61,
+      "energyKj" : 181,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "龙眼",
+      "category" : "水果",
+      "score" : 55,
+      "energyKj" : 251,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "番茄汤",
+      "category" : "汤",
+      "score" : 8,
+      "energyKj" : 165,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆蔬菜汤",
+      "category" : "汤",
+      "score" : -5,
+      "energyKj" : 126,
+      "protein" : 1,
+      "fat" : 1,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 1
+    }, {
+      "name" : "素食蔬菜汤",
+      "category" : "汤",
+      "score" : -5,
+      "energyKj" : 119,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "火腿",
+      "category" : "肉类",
+      "score" : -11,
+      "energyKj" : 683,
+      "protein" : 16,
+      "fat" : 8,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 57
+    }, {
+      "name" : "火鸡",
+      "category" : "肉类",
+      "score" : 4,
+      "energyKj" : 790,
+      "protein" : 28,
+      "fat" : 7,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 109
+    }, {
+      "name" : "烟熏火腿",
+      "category" : "肉类",
+      "score" : -14,
+      "energyKj" : 591,
+      "protein" : 18,
+      "fat" : 2,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "烤肉",
+      "category" : "肉类",
+      "score" : -11,
+      "energyKj" : 1512,
+      "protein" : 20,
+      "fat" : 30,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 105
+    }, {
+      "name" : "烤鸭",
+      "category" : "肉类",
+      "score" : -6,
+      "energyKj" : 1410,
+      "protein" : 18,
+      "fat" : 28,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 84
+    }, {
+      "name" : "烧鹅",
+      "category" : "肉类",
+      "score" : 0,
+      "energyKj" : 1276,
+      "protein" : 25,
+      "fat" : 21,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 91
+    }, {
+      "name" : "牛肉汤",
+      "category" : "肉类",
+      "score" : -2,
+      "energyKj" : 25,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "牛肉瘦",
+      "category" : "肉类",
+      "score" : 7,
+      "energyKj" : 488,
+      "protein" : 23,
+      "fat" : 2,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "牛肉肥",
+      "category" : "肉类",
+      "score" : -29,
+      "energyKj" : 2845,
+      "protein" : 10,
+      "fat" : 70,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 95
+    }, {
+      "name" : "牛蛙",
+      "category" : "肉类",
+      "score" : 12,
+      "energyKj" : 305,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "猪培根",
+      "category" : "肉类",
+      "score" : -28,
+      "energyKj" : 1744,
+      "protein" : 12,
+      "fat" : 39,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 66
+    }, {
+      "name" : "猪头肉",
+      "category" : "肉类",
+      "score" : -18,
+      "energyKj" : 658,
+      "protein" : 13,
+      "fat" : 10,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 69
+    }, {
+      "name" : "猪瘦肉",
+      "category" : "肉类",
+      "score" : 11,
+      "energyKj" : 562,
+      "protein" : 21,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 64
+    }, {
+      "name" : "猪耳朵",
+      "category" : "肉类",
+      "score" : 1,
+      "energyKj" : 695,
+      "protein" : 15,
+      "fat" : 10,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "猪肝",
+      "category" : "肉类",
+      "score" : 14,
+      "energyKj" : 690,
+      "protein" : 26,
+      "fat" : 4,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 355
+    }, {
+      "name" : "猪脑",
+      "category" : "肉类",
+      "score" : -21,
+      "energyKj" : 577,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2552
+    }, {
+      "name" : "猪蹄",
+      "category" : "肉类",
+      "score" : 1,
+      "energyKj" : 889,
+      "protein" : 23,
+      "fat" : 12,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 88
+    }, {
+      "name" : "瘦羊肉",
+      "category" : "肉类",
+      "score" : 12,
+      "energyKj" : 862,
+      "protein" : 28,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 92
+    }, {
+      "name" : "肉丸",
+      "category" : "肉类",
+      "score" : -25,
+      "energyKj" : 1196,
+      "protein" : 14,
+      "fat" : 22,
+      "carbs" : 8,
+      "starch" : 2,
+      "fiber" : 2,
+      "cholesterol" : 66
+    }, {
+      "name" : "肥猪肉",
+      "category" : "肉类",
+      "score" : -34,
+      "energyKj" : 2449,
+      "protein" : 10,
+      "fat" : 60,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 81
+    }, {
+      "name" : "肥羊肉",
+      "category" : "肉类",
+      "score" : -32,
+      "energyKj" : 2782,
+      "protein" : 6,
+      "fat" : 70,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "鸡心",
+      "category" : "肉类",
+      "score" : 9,
+      "energyKj" : 640,
+      "protein" : 15,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 136
+    }, {
+      "name" : "鸡汤",
+      "category" : "肉类",
+      "score" : -8,
+      "energyKj" : 26,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2
+    }, {
+      "name" : "鸡肉",
+      "category" : "肉类",
+      "score" : -2,
+      "energyKj" : 604,
+      "protein" : 28,
+      "fat" : 3,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 86
+    }, {
+      "name" : "鸡肝",
+      "category" : "肉类",
+      "score" : 2,
+      "energyKj" : 496,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 345
+    }, {
+      "name" : "鹅肝",
+      "category" : "肉类",
+      "score" : 9,
+      "energyKj" : 556,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 515
+    }, {
+      "name" : "鹌鹑",
+      "category" : "肉类",
+      "score" : 8,
+      "energyKj" : 803,
+      "protein" : 19,
+      "fat" : 12,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 76
+    }, {
+      "name" : "南瓜",
+      "category" : "蔬菜",
+      "score" : 66,
+      "energyKj" : 109,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "卷心菜",
+      "category" : "蔬菜",
+      "score" : 51,
+      "energyKj" : 103,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "四季豆",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 131,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆",
+      "category" : "蔬菜",
+      "score" : 57,
+      "energyKj" : 322,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 15,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆面粉",
+      "category" : "蔬菜",
+      "score" : 48,
+      "energyKj" : 1493,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 83,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "大白菜",
+      "category" : "蔬菜",
+      "score" : 75,
+      "energyKj" : 55,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "大蒜",
+      "category" : "蔬菜",
+      "score" : 47,
+      "energyKj" : 623,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 33,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "大豆",
+      "category" : "蔬菜",
+      "score" : 72,
+      "energyKj" : 614,
+      "protein" : 12,
+      "fat" : 6,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "小南瓜",
+      "category" : "蔬菜",
+      "score" : 0,
+      "energyKj" : 69,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "小萝卜",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 76,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "山药",
+      "category" : "蔬菜",
+      "score" : 56,
+      "energyKj" : 343,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 20,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "扁豆",
+      "category" : "豆类及豆制品",
+      "score" : 55,
+      "energyKj" : 1473,
+      "protein" : 24,
+      "fat" : 1,
+      "carbs" : 63,
+      "starch" : 49,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "木薯",
+      "category" : "蔬菜",
+      "score" : 36,
+      "energyKj" : 667,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 38,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "洋葱",
+      "category" : "蔬菜",
+      "score" : 45,
+      "energyKj" : 166,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "炒蘑菇",
+      "category" : "蔬菜",
+      "score" : 24,
+      "energyKj" : 110,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "炒香菇",
+      "category" : "蔬菜",
+      "score" : 17,
+      "energyKj" : 162,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "牛蒡根",
+      "category" : "蔬菜",
+      "score" : 78,
+      "energyKj" : 302,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甘薯",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 359,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 20,
+      "starch" : 12,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜椒",
+      "category" : "蔬菜",
+      "score" : 65,
+      "energyKj" : 84,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜玉米",
+      "category" : "蔬菜",
+      "score" : 42,
+      "energyKj" : 360,
+      "protein" : 3,
+      "fat" : 1,
+      "carbs" : 18,
+      "starch" : 5,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜菜",
+      "category" : "蔬菜",
+      "score" : 67,
+      "energyKj" : 180,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜菜叶",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 92,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "生姜",
+      "category" : "蔬菜",
+      "score" : 86,
+      "energyKj" : 75,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "生菜",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 62,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "番茄汁",
+      "category" : "蔬菜",
+      "score" : 0,
+      "energyKj" : 72,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "白菜",
+      "category" : "蔬菜",
+      "score" : 59,
+      "energyKj" : 48,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "白萝卜",
+      "category" : "蔬菜",
+      "score" : 81,
+      "energyKj" : 59,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "白蘑菇",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 93,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "秋葵",
+      "category" : "蔬菜",
+      "score" : 62,
+      "energyKj" : 138,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "竹笋",
+      "category" : "蔬菜",
+      "score" : 81,
+      "energyKj" : 115,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "红心萝卜",
+      "category" : "蔬菜",
+      "score" : 76,
+      "energyKj" : 132,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "红豆",
+      "category" : "蔬菜",
+      "score" : 38,
+      "energyKj" : 121,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "绿豆",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 126,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "羽衣甘蓝",
+      "category" : "蔬菜",
+      "score" : 80,
+      "energyKj" : 207,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "胡萝卜",
+      "category" : "蔬菜",
+      "score" : 33,
+      "energyKj" : 173,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 1,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芋头",
+      "category" : "蔬菜",
+      "score" : 62,
+      "energyKj" : 469,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 26,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "芝麻",
+      "category" : "蔬菜",
+      "score" : 57,
+      "energyKj" : 2397,
+      "protein" : 17,
+      "fat" : 49,
+      "carbs" : 23,
+      "starch" : 0,
+      "fiber" : 11,
+      "cholesterol" : 0
+    }, {
+      "name" : "芥末",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 114,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "芦笋",
+      "category" : "蔬菜",
+      "score" : 71,
+      "energyKj" : 85,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "花椒",
+      "category" : "蔬菜",
+      "score" : 77,
+      "energyKj" : 80,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "花椰菜",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 104,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芹菜",
+      "category" : "蔬菜",
+      "score" : 60,
+      "energyKj" : 67,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "苦瓜",
+      "category" : "蔬菜",
+      "score" : 72,
+      "energyKj" : 126,
+      "protein" : 5,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "茄子",
+      "category" : "蔬菜",
+      "score" : 59,
+      "energyKj" : 104,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "苋菜叶",
+      "category" : "蔬菜",
+      "score" : 50,
+      "energyKj" : 97,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "菊苣",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 71,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "菜豆",
+      "category" : "蔬菜",
+      "score" : 70,
+      "energyKj" : 280,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠菜",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 97,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "蕨类",
+      "category" : "蔬菜",
+      "score" : 80,
+      "energyKj" : 143,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "藜",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 180,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "蘑菇",
+      "category" : "蔬菜",
+      "score" : 64,
+      "energyKj" : 141,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "西兰花",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 141,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "西红柿",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 74,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "豆芽",
+      "category" : "蔬菜",
+      "score" : 69,
+      "energyKj" : 510,
+      "protein" : 13,
+      "fat" : 6,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "豇豆",
+      "category" : "蔬菜",
+      "score" : 73,
+      "energyKj" : 376,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "豌豆",
+      "category" : "豆类及豆制品",
+      "score" : 72,
+      "energyKj" : 1435,
+      "protein" : 21,
+      "fat" : 1,
+      "carbs" : 62,
+      "starch" : 0,
+      "fiber" : 15,
+      "cholesterol" : 0
+    }, {
+      "name" : "辣椒",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 88,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "韭菜",
+      "category" : "蔬菜",
+      "score" : 47,
+      "energyKj" : 126,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "香菇",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 160,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄瓜",
+      "category" : "蔬菜",
+      "score" : 61,
+      "energyKj" : 65,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "水煮蛋",
+      "category" : "蛋类",
+      "score" : -13,
+      "energyKj" : 597,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 370
+    }, {
+      "name" : "炒蛋",
+      "category" : "蛋类",
+      "score" : -22,
+      "energyKj" : 621,
+      "protein" : 9,
+      "fat" : 10,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 277
+    }, {
+      "name" : "煎蛋",
+      "category" : "蛋类",
+      "score" : -24,
+      "energyKj" : 643,
+      "protein" : 10,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 313
+    }, {
+      "name" : "鸡蛋",
+      "category" : "蛋类",
+      "score" : -12,
+      "energyKj" : 599,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 372
+    }, {
+      "name" : "鸡蛋白",
+      "category" : "蛋类",
+      "score" : 10,
+      "energyKj" : 216,
+      "protein" : 10,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "鸡蛋黄",
+      "category" : "蛋类",
+      "score" : -26,
+      "energyKj" : 1346,
+      "protein" : 15,
+      "fat" : 26,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 1085
+    }, {
+      "name" : "鹌鹑蛋",
+      "category" : "蛋类",
+      "score" : -14,
+      "energyKj" : 663,
+      "protein" : 13,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 844
+    }, {
+      "name" : "利马豆",
+      "category" : "豆类及豆制品",
+      "score" : 21,
+      "energyKj" : 1414,
+      "protein" : 21,
+      "fat" : 0,
+      "carbs" : 63,
+      "starch" : 0,
+      "fiber" : 19,
+      "cholesterol" : 0
+    }, {
+      "name" : "大豆面粉",
+      "category" : "豆类及豆制品",
+      "score" : 11,
+      "energyKj" : 1816,
+      "protein" : 37,
+      "fat" : 20,
+      "carbs" : 31,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "嫩豆腐",
+      "category" : "豆类及豆制品",
+      "score" : 18,
+      "energyKj" : 253,
+      "protein" : 7,
+      "fat" : 3,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "纳豆",
+      "category" : "豆类及豆制品",
+      "score" : 16,
+      "energyKj" : 883,
+      "protein" : 19,
+      "fat" : 11,
+      "carbs" : 12,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "羽扇豆",
+      "category" : "豆类及豆制品",
+      "score" : 26,
+      "energyKj" : 1554,
+      "protein" : 36,
+      "fat" : 9,
+      "carbs" : 40,
+      "starch" : 0,
+      "fiber" : 18,
+      "cholesterol" : 0
+    }, {
+      "name" : "老豆腐",
+      "category" : "豆类及豆制品",
+      "score" : 19,
+      "energyKj" : 326,
+      "protein" : 9,
+      "fat" : 4,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "花生",
+      "category" : "豆类及豆制品",
+      "score" : 4,
+      "energyKj" : 2374,
+      "protein" : 25,
+      "fat" : 49,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "花生酱",
+      "category" : "豆类及豆制品",
+      "score" : -14,
+      "energyKj" : 2464,
+      "protein" : 24,
+      "fat" : 49,
+      "carbs" : 21,
+      "starch" : 4,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "蚕豆",
+      "category" : "豆类及豆制品",
+      "score" : 25,
+      "energyKj" : 1425,
+      "protein" : 26,
+      "fat" : 1,
+      "carbs" : 58,
+      "starch" : 0,
+      "fiber" : 25,
+      "cholesterol" : 0
+    }, {
+      "name" : "豆浆",
+      "category" : "豆类及豆制品",
+      "score" : 19,
+      "energyKj" : 226,
+      "protein" : 3,
+      "fat" : 1,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "鹰嘴豆",
+      "category" : "豆类及豆制品",
+      "score" : 12,
+      "energyKj" : 1581,
+      "protein" : 20,
+      "fat" : 6,
+      "carbs" : 62,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄豆",
+      "category" : "豆类及豆制品",
+      "score" : 27,
+      "energyKj" : 1443,
+      "protein" : 22,
+      "fat" : 2,
+      "carbs" : 60,
+      "starch" : 0,
+      "fiber" : 25,
+      "cholesterol" : 0
+    } ],
+    "diseaseRisks" : [ {
+      "diseaseName" : "炎症性肠炎",
+      "riskValue" : "0.24",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "结直肠癌",
+      "riskValue" : "0.26",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肠易激综合征",
+      "riskValue" : "0.18",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "感染性腹泻",
+      "riskValue" : "0.16",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "胃病",
+      "riskValue" : "0.20",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肝病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "胆病",
+      "riskValue" : "0.14",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肾病",
+      "riskValue" : "0.05",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "心脑血管疾病",
+      "riskValue" : "0.37",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "II型糖尿病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "抑郁症",
+      "riskValue" : "0.27",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "甲状腺疾病",
+      "riskValue" : "0.33",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "肺部感染或疾病",
+      "riskValue" : "0.12",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "自体免疫病",
+      "riskValue" : "0.08",
+      "riskLevel" : "低风险"
+    } ]
+  },
+  "matchedMemberId" : null,
+  "confidence" : 0.2,
+  "matchLabel" : "no_match",
+  "candidates" : [ {
+    "id" : 12,
+    "name" : "老大",
+    "nickname" : "老大",
+    "gender" : "male",
+    "age" : 0,
+    "similarityScore" : 0.2,
+    "matchFields" : "gender"
+  } ],
+  "extractedName" : "某人",
+  "extractedGender" : "male",
+  "extractedAge" : 53,
+  "needBind" : true
+}

+ 78 - 7
cfc-web/src/views/admin/ArticleEdit.vue

@@ -36,19 +36,19 @@
         </el-form-item>
 
         <el-form-item label="分类">
-          <el-select v-model="form.categoryId" placeholder="选择分类" style="width: 300px;" :disabled="readonly">
+          <el-select v-model="form.categoryId" placeholder="选择分类" class="form-select" :disabled="readonly">
             <el-option v-for="cat in categories" :key="cat.id" :label="cat.name" :value="cat.id" />
           </el-select>
         </el-form-item>
 
         <el-form-item label="内容类型">
-          <el-select v-model="form.contentType" placeholder="选择类型" style="width: 200px;" :disabled="readonly">
+          <el-select v-model="form.contentType" placeholder="选择类型" class="form-select form-select--short" :disabled="readonly">
             <el-option label="文章" value="article" />
             <el-option label="知识点" value="knowledge" />
             <el-option label="课程" value="course" />
             <el-option label="贴士" value="tip" />
           </el-select>
-          <span style="color: #999; font-size: 12px; margin-left: 10px;">标识内容属于哪类知识</span>
+          <span class="form-hint">标识内容属于哪类知识</span>
         </el-form-item>
 
         <el-form-item label="难度等级">
@@ -56,7 +56,7 @@
         </el-form-item>
 
         <el-form-item label="知识标签">
-          <el-select v-model="form.tagIds" multiple placeholder="选择知识标签" style="width: 400px;" :disabled="readonly" clearable>
+          <el-select v-model="form.tagIds" multiple placeholder="选择知识标签" class="form-select form-select--wide" :disabled="readonly" clearable>
             <el-option v-for="tag in tagOptions" :key="tag.id" :label="tag.name" :value="tag.id" />
           </el-select>
         </el-form-item>
@@ -96,13 +96,13 @@
           <el-input v-model="form.tags" placeholder="逗号分隔,如: 育儿,亲子,心理" :disabled="readonly" />
         </el-form-item>
 
-        <el-row :gutter="20">
-          <el-col :span="12">
+        <el-row :gutter="20" class="form-row">
+          <el-col :xs="24" :sm="24" :md="12" :lg="12">
             <el-form-item label="作者">
               <el-input v-model="form.author" placeholder="文章作者" :disabled="readonly" />
             </el-form-item>
           </el-col>
-          <el-col :span="12">
+          <el-col :xs="24" :sm="24" :md="12" :lg="12">
             <el-form-item label="阅读时间(分)">
               <el-input-number v-model="form.readTime" :min="1" :max="999" :disabled="readonly" />
             </el-form-item>
@@ -578,4 +578,75 @@ onError: (file, err, res) => {
 .rich-editor /deep/ .w-e-text-container {
   min-height: 400px;
 }
+
+/* ========== 响应式表单 ========== */
+
+/* 统一选择器宽度自适应 */
+.form-select {
+  width: 300px;
+}
+.form-select--short {
+  width: 200px;
+}
+.form-select--wide {
+  width: 400px;
+}
+
+.form-hint {
+  color: #999;
+  font-size: 12px;
+  margin-left: 10px;
+  white-space: nowrap;
+}
+
+@media (max-width: 768px) {
+  .article-edit /deep/ .el-form-item {
+    display: block !important;
+  }
+  .article-edit /deep/ .el-form-item__content {
+    display: block !important;
+    width: 100% !important;
+    margin-left: 0 !important;
+  }
+  .article-edit /deep/ .el-form-item__label {
+    text-align: left !important;
+    display: block !important;
+    float: none !important;
+  }
+
+  .form-select,
+  .form-select--short,
+  .form-select--wide {
+    width: 100% !important;
+  }
+
+  .form-row {
+    display: block;
+  }
+  .form-row /deep/ .el-col {
+    width: 100% !important;
+  }
+
+  .form-hint {
+    display: block;
+    margin-left: 0;
+    margin-top: 4px;
+    white-space: normal;
+  }
+
+  .cover-preview {
+    width: 100%;
+    max-width: 240px;
+  }
+
+  .article-edit /deep/ .admin-page-actions {
+    margin-left: 0;
+    width: 100%;
+  }
+
+  .article-edit /deep/ .el-rate {
+    display: inline-flex;
+    flex-wrap: wrap;
+  }
+}
 </style>

+ 466 - 0
docs/superpowers/plans/2026-08-19-stt-implementation.md

@@ -0,0 +1,466 @@
+# 语音转文字(STT)实现计划
+
+> **面向 AI 代理的工作者:** 必需子技能:使用 superpowers:subagent-driven-development(推荐)或 superpowers:executing-plans 逐任务实现此计划。步骤使用复选框(`- [ ]`)语法来跟踪进度。
+
+**目标:** 在 cfc-langgraph 中新增 faster-whisper 本地 STT 端点,改造小程序打卡页录音后自动转写,同时为 AI 对话页添加语音输入按钮。
+
+**架构:** faster-whisper base 模型(140MB,CPU,int8)作为 langgraph 服务的内联模块启动时加载。`POST /api/v1/audio/transcribe` 接收 mp3 → 解码为 float32 → 转写 → 返回文字。小程序三页分享同一录音逻辑,直接保存转写结果不预览。
+
+**技术栈:** faster-whisper==1.2.1, ctranslate2==4.8.1, av==18.1.0, Python 3.12, Vue 2 Options API, uni-app
+
+---
+
+## 文件结构
+
+### 新增文件
+| 文件 | 职责 |
+|------|------|
+| `cfc-langgraph/app/audio/__init__.py` | 空包 |
+| `cfc-langgraph/app/audio/transcriber.py` | faster-whisper 封装:加载模型、转写 mp3、返回文字 |
+| `cfc-langgraph/app/api/audio.py` | FastAPI 路由:`POST /api/v1/audio/transcribe`,接收 multipart file → 调 transcriber → 返回 JSON |
+
+### 修改文件
+| 文件 | 修改内容 |
+|------|----------|
+| `cfc-langgraph/app/main.py` | 注册 audio router;startup 事件中初始化全局 transcriber |
+| `cfc-langgraph/requirements.txt` | 新增 `faster-whisper==1.2.1`、`av==18.1.0` |
+| `cfc-langgraph/Dockerfile` | 预下载 whisper base 模型(HF_ENDPOINT=https://hf-mirror.com 构建时下载缓存) |
+| `cfc-langgraph/.env.production` | 无需修改 |
+| `cfc-frontend/utils/api.js` | 新增 `sttTranscribe(filePath)` 方法 |
+| `cfc-frontend/pages/growth/diet-checkin.vue` | 录音 `onStop` 后调 STT,`voiceText` 自动填入表单 |
+| `cfc-frontend/pages/growth/exercise-checkin.vue` | 同上 |
+| `cfc-frontend/pages/growth/sleep-checkin.vue` | 同上 |
+| cfc-backend DTO 文件 | 打卡 DTO 增加 `voiceText` 字段 |
+
+---
+
+### 任务 1:langgraph — STT 转写器(transcriber.py)
+
+**文件:**
+- 创建:`cfc-langgraph/app/audio/__init__.py`(空文件)
+- 创建:`cfc-langgraph/app/audio/transcriber.py`
+- 创建:`cfc-langgraph/app/api/audio.py`
+- 修改:`cfc-langgraph/app/main.py`
+- 修改:`cfc-langgraph/requirements.txt`
+
+- [ ] **步骤 1:创建 audio 包和 transcriber 模块**
+
+`cfc-langgraph/app/audio/__init__.py` — 空文件
+
+`cfc-langgraph/app/audio/transcriber.py`:
+```python
+"""faster-whisper 本地 STT 引擎封装"""
+import os
+import logging
+import numpy as np
+import av
+from faster_whisper import WhisperModel
+
+logger = logging.getLogger(__name__)
+
+# 模型实例(全局单例,startup 时初始化)
+_model: "WhisperModel | None" = None
+_loaded = False
+
+
+def init_model(model_size: str = "base", device: str = "cpu", compute_type: str = "int8"):
+    """初始化 faster-whisper 模型(启动时调用)"""
+    global _model, _loaded
+    if _loaded:
+        return
+    # 优先使用国内镜像
+    os.environ.setdefault("HF_ENDPOINT", "https://hf-mirror.com")
+    logger.info("加载 faster-whisper 模型 %s (device=%s, compute=%s)...", model_size, device, compute_type)
+    _model = WhisperModel(model_size, device=device, compute_type=compute_type)
+    _loaded = True
+    logger.info("faster-whisper 模型加载完成")
+
+
+def transcribe_audio(file_path: str, language: str = "zh") -> dict:
+    """转写音频文件,返回 {text, language, language_probability, duration}"""
+    if not _model:
+        raise RuntimeError("faster-whisper 模型未初始化")
+
+    # 1. 解码 mp3 → float32 16kHz 单声道
+    duration_sec = 0.0
+    try:
+        with av.open(file_path) as container:
+            stream = container.streams.audio[0]
+            total_frames = 0
+            samples = []
+            for frame in container.decode(audio=0):
+                if frame.pts is not None:
+                    total_frames = frame.pts
+                arr = frame.to_ndarray()
+                # 混音为单声道
+                if arr.ndim > 1 and arr.shape[0] > 1:
+                    arr = np.mean(arr, axis=0)
+                samples.append(arr)
+            if not samples:
+                raise ValueError("音频文件无有效帧")
+            audio = np.concatenate(samples).astype(np.float32)
+            # 归一化到 [-1, 1]
+            max_val = np.max(np.abs(audio))
+            if max_val > 0:
+                audio = audio / max_val
+            # 重采样到 16kHz (whisper 要求)
+            # av 解码后可能是 44100/48000 Hz,需要重采样
+            orig_rate = stream.rate if stream.rate else 44100
+            if orig_rate != 16000:
+                import scipy.signal  # 需要 scipy 处理重采样
+                # 使用线性插值重采样
+                new_len = int(len(audio) * 16000 / orig_rate)
+                audio = np.interp(
+                    np.linspace(0, len(audio) - 1, new_len),
+                    np.arange(len(audio)),
+                    audio
+                ).astype(np.float32)
+            duration_sec = len(audio) / 16000.0
+    except Exception as e:
+        logger.error("音频解码失败 %s: %s", file_path, e)
+        raise
+
+    # 2. 转写
+    segments, info = _model.transcribe(audio, language=language, beam_size=5)
+    text = "".join(seg.text for seg in segments).strip()
+    return {
+        "text": text,
+        "language": info.language,
+        "language_probability": round(float(info.language_probability), 4),
+        "duration": round(duration_sec, 2),
+    }
+```
+
+- [ ] **步骤 2:创建 STT 端点**
+
+`cfc-langgraph/app/api/audio.py`:
+```python
+"""语音转写端点"""
+import os
+import uuid
+import logging
+from fastapi import APIRouter, UploadFile, File, HTTPException
+from pydantic import BaseModel
+from typing import Optional
+from app.audio.transcriber import transcribe_audio
+
+logger = logging.getLogger(__name__)
+router = APIRouter(prefix="/api/v1", tags=["audio"])
+
+MAX_FILE_SIZE = 5 * 1024 * 1024  # 5MB
+UPLOAD_DIR = "/tmp/stt_uploads"
+
+
+class TranscribeResponse(BaseModel):
+    code: int = 200
+    message: str = "ok"
+    data: Optional[dict] = None
+
+
+@router.post("/audio/transcribe", response_model=TranscribeResponse)
+async def transcribe(file: UploadFile = File(...)):
+    # 验证文件类型
+    if not file.filename or not file.filename.lower().endswith((".mp3", ".wav", ".m4a", ".flac", ".ogg")):
+        raise HTTPException(status_code=400, detail="不支持的音频格式,仅支持 mp3/wav/m4a/flac/ogg")
+    # 读取内容
+    content = await file.read()
+    if len(content) > MAX_FILE_SIZE:
+        raise HTTPException(status_code=413, detail="音频文件过大(最大 5MB)")
+    if len(content) < 1000:
+        raise HTTPException(status_code=400, detail="音频文件为空或过短")
+
+    # 保存到临时文件(faster-whisper 需要文件路径或 ndarray)
+    os.makedirs(UPLOAD_DIR, exist_ok=True)
+    ext = file.filename.rsplit(".", 1)[-1]
+    tmp_path = os.path.join(UPLOAD_DIR, f"{uuid.uuid4().hex}.{ext}")
+    try:
+        with open(tmp_path, "wb") as f:
+            f.write(content)
+        result = transcribe_audio(tmp_path)
+        return TranscribeResponse(data=result)
+    except Exception as e:
+        logger.error("转写失败: %s", e, exc_info=True)
+        return TranscribeResponse(code=500, message=f"转写失败: {str(e)}", data={})
+    finally:
+        try:
+            os.remove(tmp_path)
+        except OSError:
+            pass
+```
+
+- [ ] **步骤 3:注册路由到 main.py**
+
+`cfc-langgraph/app/main.py`:
+
+在 `app.include_router(logs.router)` 之后添加:
+```python
+from app.api import audio
+app.include_router(audio.router)
+```
+
+在 `startup()` 函数中 `setup_logging` 之后、`retriever.initialize()` 之前添加:
+```python
+from app.audio.transcriber import init_model
+init_model()
+```
+
+- [ ] **步骤 4:更新 requirements.txt**
+
+在 `cfc-langgraph/requirements.txt` 末尾追加:
+```
+faster-whisper==1.2.1
+av==18.1.0
+```
+
+- [ ] **步骤 5:更新 Dockerfile(预下载模型缓存)**
+
+在 `cfc-langgraph/Dockerfile` 中,`COPY app/ app/` 之前添加:
+```dockerfile
+# 预下载 faster-whisper base 模型(避免启动时慢下载)
+RUN pip install --no-cache-dir --index-url https://pypi.tuna.tsinghua.edu.cn/simple faster-whisper==1.2.1 av==18.1.0 && \
+    HF_ENDPOINT=https://hf-mirror.com python3 -c "from faster_whisper import WhisperModel; WhisperModel('base', device='cpu', compute_type='int8')"
+```
+
+- [ ] **步骤 6:验证 langgraph 编译 & 启动**
+
+```bash
+cd /app/cfc/cfc-langgraph
+.venv/bin/python -m py_compile app/audio/transcriber.py app/api/audio.py
+# 验证 import 无报错
+.venv/bin/python -c "from app.audio.transcriber import init_model, transcribe_audio; print('import OK')"
+```
+
+---
+
+### 任务 2:frontend — API 工具
+
+**文件:**
+- 修改:`cfc-frontend/utils/api.js`
+
+- [ ] **步骤 1:新增 sttTranscribe 方法**
+
+在 `cfc-frontend/utils/api.js` 中(`uploadFile` 相关段落附近,例如 `export const` 区域)添加:
+```javascript
+/**
+ * 语音转写:上传音频文件,返回转写文字
+ * @param {string} filePath - 录音临时路径
+ * @returns {Promise<string>} 转写文字
+ */
+export const sttTranscribe = (filePath) => {
+  return new Promise((resolve, reject) => {
+    uni.uploadFile({
+      url: BASE_URL + '/api/v1/audio/transcribe',
+      filePath: filePath,
+      name: 'file',
+      header: { 'Authorization': 'Bearer ' + uni.getStorageSync('token') },
+      success: (res) => {
+        try {
+          var data = JSON.parse(res.data)
+          if (data.code === 200 && data.data && data.data.text) {
+            resolve(data.data.text)
+          } else {
+            reject(new Error(data.message || '转写失败'))
+          }
+        } catch (e) {
+          reject(new Error('解析响应失败'))
+        }
+      },
+      fail: (err) => {
+        reject(new Error('上传失败: ' + (err.errMsg || '')))
+      }
+    })
+  })
+}
+```
+
+---
+
+### 任务 3:frontend — 打卡页录音后自动转写
+
+**文件:**
+- 修改:`cfc-frontend/pages/growth/diet-checkin.vue`
+- 修改:`cfc-frontend/pages/growth/exercise-checkin.vue`
+- 修改:`cfc-frontend/pages/growth/sleep-checkin.vue`
+
+三页改动模式相同,以 `diet-checkin.vue` 为例。
+
+- [ ] **步骤 1:diet-checkin 引入 sttTranscribe**
+
+在 `<script>` 顶部 import 区域添加:
+```javascript
+import { sttTranscribe } from '../../utils/api.js'
+```
+
+- [ ] **步骤 2:data 中增加 voiceText 字段**
+
+在 `data()` 的 `form` 对象中增加:
+```javascript
+form: {
+  // ... 现有字段
+  voiceText: '',
+}
+```
+
+- [ ] **步骤 3:onStop 回调中增加 STT 调用**
+
+将 `recorderManager.onStop` 回调从:
+```javascript
+this.recorderManager.onStop((res) => {
+  this.isRecording = false
+  if (this.recordTimer) { clearInterval(this.recordTimer); this.recordTimer = null }
+  this.form.voicePath = res.tempFilePath
+  this.form.voiceDuration = res.duration
+})
+```
+改为:
+```javascript
+this.recorderManager.onStop((res) => {
+  this.isRecording = false
+  if (this.recordTimer) { clearInterval(this.recordTimer); this.recordTimer = null }
+  this.form.voicePath = res.tempFilePath
+  this.form.voiceDuration = res.duration
+  // 自动转写
+  var self = this
+  uni.showLoading({ title: '语音识别中...', mask: true })
+  sttTranscribe(res.tempFilePath).then(function(text) {
+    self.form.voiceText = text
+    uni.hideLoading()
+  }).catch(function(err) {
+    uni.hideLoading()
+    console.warn('STT 转写失败:', err)
+  })
+})
+```
+
+- [ ] **步骤 4:doCheckin 提交时包含 voiceText**
+
+在 `doCheckin` 方法的提交数据对象中增加 `voiceText`:
+```javascript
+// 在 submitData 构建处
+var submitData = {
+  // ... 现有字段
+  voiceText: this.form.voiceText || '',
+}
+```
+
+- [ ] **步骤 5:exercise-checkin.vue 与 sleep-checkin.vue 同步修改**
+
+同样模式:引入 `sttTranscribe`、`voiceText` 字段、`onStop` 回调加 STT、`doCheckin` 提交时包含。
+
+---
+
+### 任务 4:frontend — AI 对话语音输入按钮(后续)
+
+**说明:** 对话页 `pages/chat/chat.vue`(或类似路径)新增语音按钮。此任务作为独立步骤,不阻塞打卡页功能。
+
+- [ ] **步骤 1:对话页增加录音按钮**
+
+在输入框旁添加 🎙️ 按钮,绑定 `toggleRecord` 事件:
+```html
+<view class="voice-btn" @touchstart="startVoiceRecord" @touchend="stopVoiceRecord">
+  <text>🎙️</text>
+</view>
+```
+
+- [ ] **步骤 2:录音逻辑(与打卡页复用相同模式)**
+
+```javascript
+startVoiceRecord: function() {
+  this.recorderManager = uni.getRecorderManager()
+  this.recorderManager.onStop((res) => {
+    var self = this
+    uni.showLoading({ title: '语音识别中...', mask: true })
+    sttTranscribe(res.tempFilePath).then(function(text) {
+      self.inputText = text  // 填入输入框
+      uni.hideLoading()
+    }).catch(function(err) {
+      uni.hideLoading()
+      uni.showToast({ title: '语音识别失败', icon: 'none' })
+    })
+  })
+  this.recorderManager.start({ duration: 60000, format: 'mp3' })
+},
+stopVoiceRecord: function() {
+  if (this.recorderManager) this.recorderManager.stop()
+},
+```
+
+- [ ] **步骤 3:引入 sttTranscribe**
+
+```javascript
+import { sttTranscribe } from '../../utils/api.js'
+```
+
+---
+
+### 任务 5:backend — DTO 增加 voiceText 字段
+
+**文件:**
+- 修改:`cfc-backend/src/main/java/com/etotem/cfc/dto/DietCheckinDTO.java`
+- 修改:`cfc-backend/src/main/java/com/etotem/cfc/dto/ExerciseCheckinDTO.java`
+- 修改:`cfc-backend/src/main/java/com/etotem/cfc/dto/SleepCheckinDTO.java`
+
+以 `DietCheckinDTO` 为例,三处改动相同。
+
+- [ ] **步骤 1:DTO 增加字段**
+
+```java
+private String voiceText;  // 语音转写文字
+
+public String getVoiceText() { return voiceText; }
+public void setVoiceText(String voiceText) { this.voiceText = voiceText; }
+```
+
+- [ ] **步骤 2:Entity 增加字段(若 DTO 映射到实体)**
+
+```java
+private String voiceText;
+// getter/setter
+```
+
+- [ ] **步骤 3:mvn compile 验证**
+
+```bash
+cd /app/cfc/cfc-backend && mvn clean compile -q
+```
+
+---
+
+### 任务 6:镜像构建 & 部署验证
+
+- [ ] **步骤 1:重建镜像**
+
+```bash
+cd /app/cfc/cfc-langgraph && docker compose build langgraph-svc
+```
+
+- [ ] **步骤 2:重启容器**
+
+```bash
+docker compose up -d langgraph-svc
+```
+
+- [ ] **步骤 3:验证 STT 端点**
+
+```bash
+# 等待 healthcheck 通过
+curl -s http://localhost:9000/health
+# 用一段测试音频验证
+# 生成测试音频(静音 3 秒)
+python3 -c "
+import numpy as np
+import wave
+sr = 16000
+with wave.open('/tmp/test_stt.wav', 'w') as w:
+    w.setnchannels(1)
+    w.setsampwidth(2)
+    w.setframerate(sr)
+    w.writeframes((np.zeros(sr*3).astype(np.int16)).tobytes())
+"
+curl -s -X POST http://localhost:9000/api/v1/audio/transcribe \
+  -F "file=@/tmp/test_stt.wav" | python3 -m json.tool
+```
+
+- [ ] **步骤 4:打卡页录音验证(小程序端手动测试)**
+
+打开 diet-checkin 页 → 录音 → 确认转写结果正常保存。

+ 179 - 0
docs/superpowers/specs/2026-08-19-stt-design.md

@@ -0,0 +1,179 @@
+# 语音转文字(STT)功能规格
+
+**日期**: 2026-08-19
+**状态**: 设计审批中
+**范围**: cfc-langgraph(新增)+ cfc-frontend(改造)
+
+---
+
+## 背景与目标
+
+小程序现有 diet/exercise/sleep 三个语音打卡页已实现录音功能(mp3 格式,`uni.getRecorderManager`),但录音仅上传保存,未做文字转写。本次新增 STT 能力,覆盖两个场景:
+
+1. **打卡语音转文字**:录音后自动转写,文字直接保存至记录,用户无感知。
+2. **AI 对话语音输入**:在聊天界面新增语音按钮,录音 → 转写 → 填入输入框 → 用户确认后发送。
+
+---
+
+## 技术选型
+
+| 项目 | 选型 | 理由 |
+|------|------|------|
+| STT 引擎 | faster-whisper 1.2.1 | 轻量(base 140MB),中文识别准确,Python 原生支持 |
+| 模型 | whisper-base(Systran/faster-whisper-base) | 中英混合识别,CPU 可用,内存 ~256MB(含模型) |
+| 模型下载源 | hf-mirror.com | 国内可访问,避免直连 HuggingFace 超时 |
+| 音频格式 | mp3(16kHz mono,WAV float32 内部处理) | 小程序录音输出 mp3,av 库解码 |
+| 部署方式 | 模型随镜像构建时缓存至 `.cache/`,无需运行时下载 | 避免容器启动慢 |
+
+---
+
+## 架构
+
+```
+[小程序] mp3 录音
+    │
+    ▼
+[langgraph] POST /api/v1/audio/transcribe
+    │  body: multipart/form-data (file=audio.mp3)
+    ▼
+[faster-whisper base] → 转写文字(中文/英文自动检测)
+    │
+    ▼
+{ text: "转写结果", language: "zh", duration: 3.2 }
+```
+
+**服务启动流程**:
+1. FastAPI 启动 → `app/main.py` → 初始化 `WhisperModel('base')` 缓存至全局变量
+2. 请求到达 `/api/v1/audio/transcribe` → 读取 mp3 → av 解码 → faster-whisper 转写 → 返回 JSON
+
+**模型缓存策略**:
+- 构建镜像时在 `COPY` 前用 `hf-mirror.com` 预下载模型到 `/root/.cache/huggingface/hub/models--Systran--faster-whisper-base/`
+- 或:启动时首次加载(约 95s),服务就绪前 healthcheck 返回不健康
+
+---
+
+## 接口设计
+
+### 1. langgraph — 语音转写端点
+
+**`POST /api/v1/audio/transcribe`**
+
+Request:
+```
+Content-Type: multipart/form-data
+file: audio.mp3 (≤30s,≤5MB)
+```
+
+Response:
+```json
+{
+  "code": 200,
+  "message": "ok",
+  "data": {
+    "text": "今天早餐吃了鸡蛋和牛奶",
+    "language": "zh",
+    "language_probability": 0.98,
+    "duration": 3.2
+  }
+}
+```
+
+错误处理:
+- 文件为空/格式不支持 → `400`
+- 转写失败 → `500`,message 含原因
+- 超时(>30s 音频) → `413`
+
+### 2. frontend — 打卡页改造(diet/exercise/sleep-checkin.vue)
+
+现有流程:录音 → 上传 mp3 → 保存 `voicePath` → 提交打卡
+
+新增流程:录音 → **调 STT 转写** → 上传 mp3 + 保存 `voiceText` → 提交打卡
+
+改动点:
+- `recorderManager.onStop` 回调中新增:调 `/api/v1/audio/transcribe` 获取文字
+- 表单增加 `voiceText` 字段(隐藏,用于后端存储)
+- 后端新增字段接收 `voiceText`(`DietCheckinDTO` 增加 `voiceText: Optional[str]`)
+
+### 3. frontend — AI 对话语音输入
+
+在聊天输入框旁新增 🎙️ 按钮,按住录音,松手转写,文字填入输入框。
+
+改动点:
+- 新增语音按钮组件(复用现有 `uni.getRecorderManager`)
+- 录音结束 → 调 STT → 结果写入 `this.inputText`
+- 用户确认后点击发送(与文字输入相同流程)
+
+---
+
+## 数据模型改动
+
+### backend(Java)
+
+`DietCheckinDTO` / `ExerciseCheckinDTO` / `SleepCheckinDTO` 增加字段:
+```java
+private String voiceText; // 语音转写文字
+```
+
+`GrowthRecordService` 新增字段映射(若统一用 `GrowthRecordDTO` 则一并增加)。
+
+### frontend(小程序)
+
+打卡页表单增加 `voiceText` 字段,提交时携带。
+
+---
+
+## 依赖变更
+
+**cfc-langgraph/requirements.txt** 新增:
+```
+faster-whisper==1.2.1
+av==18.1.0
+```
+
+**cfc-langgraph/Dockerfile** 新增模型缓存步骤:
+```dockerfile
+# 预下载 whisper base 模型(避免启动时慢下载)
+RUN HF_ENDPOINT=https://hf-mirror.com \
+    pip install faster-whisper==1.2.1 av==18.1.0 && \
+    python3 -c "from faster_whisper import WhisperModel; WhisperModel('base', device='cpu', compute_type='int8')"
+```
+
+**cfc-langgraph/.env.production** 无需新增(模型参数硬编码,不配置)。
+
+---
+
+## 非功能性约束
+
+- **模型加载时间**: ~95s(首次),后续请求 <100ms
+- **单次转写耗时**: 3 秒语音约 200-500ms(CPU base 模型)
+- **音频时长限制**: 最大 60 秒(与现有小程序录音 duration 一致)
+- **并发限制**: 单 worker 串行处理转写(避免多请求同时吃 CPU),预计 QPS ≤2
+
+---
+
+## 实现顺序建议
+
+1. **langgraph STT 端点** — 独立开发,单接口,测试通过
+2. **frontend 打卡页接入** — 三页同步改造,复用同一上传逻辑
+3. **frontend 对话语音输入** — 独立 UI 组件,最后接入
+4. **backend DTO 字段增加** — 前后端联调时同步
+
+---
+
+## 风险与缓解
+
+| 风险 | 缓解 |
+|------|------|
+| 容器启动慢(模型加载 95s) | healthcheck 初始 delay 延长至 120s |
+| CPU 资源不足(base 模型内存 ~256MB) | 确认服务器 ≥512MB 内存可用 |
+| 转写准确率问题(background noise) | 后续可换 medium 模型,本次 base 够用 |
+| 音频格式兼容(mp3 vs wav) | av 库自动处理多格式 |
+
+---
+
+## 审批
+
+- [ ] 架构设计确认
+- [ ] 接口设计确认
+- [ ] 依赖变更确认
+- [ ] 实现顺序确认

+ 149 - 0
uploads/json-results/20260813_100159_result.json

@@ -0,0 +1,149 @@
+{
+  "draftId" : 27,
+  "payload" : {
+    "summary" : {
+      "overallScore" : 57,
+      "gutHealthScore" : 76,
+      "chronicDiseaseScore" : 64,
+      "nutritionScore" : 30,
+      "balanceScore" : 38,
+      "diversityScore" : 50,
+      "beneficialScore" : 22,
+      "harmfulScore" : 26,
+      "coreGenusScore" : null,
+      "gutAge" : null,
+      "gutType" : null,
+      "shannonIndex" : null,
+      "reportNumber" : "501999942",
+      "reportDate" : null,
+      "personName" : "某人",
+      "gender" : "male",
+      "age" : 53,
+      "birthday" : null
+    },
+    "indicators" : null,
+    "gutFlora" : null,
+    "probioticSpecies" : null,
+    "taxonomyClass" : null,
+    "taxonomyOrder" : null,
+    "taxonomyFamily" : null,
+    "taxonomyGenus" : null,
+    "taxonomySpecies" : null,
+    "pathogenGenus" : null,
+    "pathogenDetection" : null,
+    "foods" : null,
+    "diseaseRisks" : [ {
+      "diseaseName" : "炎症性肠炎",
+      "riskValue" : "0.24",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "结直肠癌",
+      "riskValue" : "0.26",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "肠易激综合征",
+      "riskValue" : "0.18",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "感染性腹泻",
+      "riskValue" : "0.16",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "胃病",
+      "riskValue" : "0.20",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "肝病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "胆病",
+      "riskValue" : "0.14",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "肾病",
+      "riskValue" : "0.05",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "⼼脑血管疾病",
+      "riskValue" : "0.37",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "II型糖尿病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "抑郁症",
+      "riskValue" : "0.27",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "甲状腺疾病",
+      "riskValue" : "0.33",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "肺部感染或疾病",
+      "riskValue" : "0.12",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "自体免疫病",
+      "riskValue" : "0.08",
+      "riskLevel" : "低⻛险"
+    }, {
+      "diseaseName" : "碳⽔化合物",
+      "riskValue" : "96",
+      "riskLevel" : "正常"
+    }, {
+      "diseaseName" : "蛋⽩质",
+      "riskValue" : "44",
+      "riskLevel" : "正常"
+    }, {
+      "diseaseName" : "脂肪",
+      "riskValue" : "71",
+      "riskLevel" : "正常"
+    }, {
+      "diseaseName" : "纤维素",
+      "riskValue" : "96",
+      "riskLevel" : "正常"
+    }, {
+      "diseaseName" : "乳制品",
+      "riskValue" : "36",
+      "riskLevel" : "正常"
+    }, {
+      "diseaseName" : "苏氨酸",
+      "riskValue" : "10",
+      "riskLevel" : "偏低"
+    }, {
+      "diseaseName" : "异亮氨酸",
+      "riskValue" : "3",
+      "riskLevel" : "缺乏"
+    }, {
+      "diseaseName" : "亮氨酸",
+      "riskValue" : "1",
+      "riskLevel" : "缺乏"
+    }, {
+      "diseaseName" : "赖氨酸",
+      "riskValue" : "7",
+      "riskLevel" : "偏低"
+    }, {
+      "diseaseName" : "蛋氨酸",
+      "riskValue" : "8",
+      "riskLevel" : "偏低"
+    } ]
+  },
+  "matchedMemberId" : null,
+  "confidence" : 0.2,
+  "matchLabel" : "no_match",
+  "candidates" : [ {
+    "id" : 10,
+    "name" : "新",
+    "nickname" : "新",
+    "gender" : "male",
+    "age" : 0,
+    "similarityScore" : 0.2,
+    "matchFields" : "gender"
+  } ],
+  "extractedName" : "某人",
+  "extractedGender" : "male",
+  "extractedAge" : 53,
+  "needBind" : true
+}

+ 45 - 0
uploads/json-results/20260817_134410_result.json

@@ -0,0 +1,45 @@
+{
+  "draftId" : 31,
+  "payload" : {
+    "summary" : {
+      "overallScore" : null,
+      "gutHealthScore" : null,
+      "chronicDiseaseScore" : null,
+      "nutritionScore" : null,
+      "balanceScore" : null,
+      "diversityScore" : null,
+      "beneficialScore" : null,
+      "harmfulScore" : null,
+      "coreGenusScore" : null,
+      "gutAge" : null,
+      "gutType" : null,
+      "shannonIndex" : null,
+      "reportNumber" : null,
+      "reportDate" : null,
+      "personName" : null,
+      "gender" : null,
+      "age" : null,
+      "birthday" : null
+    },
+    "indicators" : null,
+    "gutFlora" : [ ],
+    "probioticSpecies" : [ ],
+    "taxonomyClass" : [ ],
+    "taxonomyOrder" : [ ],
+    "taxonomyFamily" : [ ],
+    "taxonomyGenus" : [ ],
+    "taxonomySpecies" : [ ],
+    "pathogenGenus" : [ ],
+    "pathogenDetection" : [ ],
+    "foods" : [ ],
+    "diseaseRisks" : null
+  },
+  "matchedMemberId" : null,
+  "confidence" : 0.0,
+  "matchLabel" : "no_match",
+  "candidates" : [ ],
+  "extractedName" : null,
+  "extractedGender" : null,
+  "extractedAge" : null,
+  "needBind" : true
+}

+ 4769 - 0
uploads/json-results/20260818_134309_result.json

@@ -0,0 +1,4769 @@
+{
+  "draftId" : 35,
+  "payload" : {
+    "summary" : {
+      "overallScore" : 57,
+      "gutHealthScore" : 76,
+      "chronicDiseaseScore" : 64,
+      "nutritionScore" : 30,
+      "balanceScore" : 38,
+      "diversityScore" : 50,
+      "beneficialScore" : 22,
+      "harmfulScore" : 26,
+      "coreGenusScore" : 85,
+      "gutAge" : null,
+      "gutType" : null,
+      "shannonIndex" : null,
+      "reportNumber" : "501999942",
+      "reportDate" : null,
+      "personName" : "某人",
+      "gender" : "male",
+      "age" : 53,
+      "birthday" : null
+    },
+    "indicators" : [ {
+      "category" : "主要营养评估",
+      "indicatorName" : "碳水化合物",
+      "indicatorValue" : "96",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "蛋白质",
+      "indicatorValue" : "44",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "脂肪",
+      "indicatorValue" : "71",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "纤维素",
+      "indicatorValue" : "96",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要营养评估",
+      "indicatorName" : "乳制品",
+      "indicatorValue" : "36",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "苏氨酸",
+      "indicatorValue" : "10",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "异亮氨酸",
+      "indicatorValue" : "3",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "亮氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "赖氨酸",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "蛋氨酸",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "胱氨酸",
+      "indicatorValue" : "86",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "苯丙氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "酪氨酸",
+      "indicatorValue" : "47",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "缬氨酸",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "组氨酸",
+      "indicatorValue" : "40",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "丙氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "谷氨酸",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "甘氨酸",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "脯氨酸",
+      "indicatorValue" : "1",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "氨基酸评估",
+      "indicatorName" : "丝氨酸",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "偏低",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素A",
+      "indicatorValue" : "84",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B1",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B2",
+      "indicatorValue" : "77",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B5",
+      "indicatorValue" : "64",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B6",
+      "indicatorValue" : "38",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素B12",
+      "indicatorValue" : "25",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素C",
+      "indicatorValue" : "31",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素D",
+      "indicatorValue" : "93",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "叶酸",
+      "indicatorValue" : "35",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "维生素评估",
+      "indicatorName" : "维生素K2",
+      "indicatorValue" : "75",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "微量元素评估",
+      "indicatorName" : "铁",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "微量元素评估",
+      "indicatorName" : "锌",
+      "indicatorValue" : "52",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "β-内酰胺酶类",
+      "indicatorValue" : "20",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "氨基糖苷类",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "大环内酯类",
+      "indicatorValue" : "39",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "呋喃类",
+      "indicatorValue" : "82",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "喹诺酮类",
+      "indicatorValue" : "30",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "磺胺类",
+      "indicatorValue" : "61",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "甲氧苄啶类",
+      "indicatorValue" : "55",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "氯霉素类",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "抗生素耐药",
+      "indicatorName" : "四环素类",
+      "indicatorValue" : "48",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道炎症水平",
+      "indicatorValue" : "16",
+      "unit" : "",
+      "refRange" : "0-80",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道产气",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "0-50",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "肠道屏障",
+      "indicatorValue" : "65",
+      "unit" : "",
+      "refRange" : "15-100",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "脂多糖LPS",
+      "indicatorValue" : "58",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "次级胆汁酸",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "对甲酚(p-Cresol)",
+      "indicatorValue" : "54",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "吲哚",
+      "indicatorValue" : "9",
+      "unit" : "",
+      "refRange" : "15-90",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "苯酚",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "0-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "腐胺",
+      "indicatorValue" : "4",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "硫化氢",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "肠道屏障功能",
+      "indicatorName" : "尸胺",
+      "indicatorValue" : "21",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "丁酸盐(Butyrate)",
+      "indicatorValue" : "14",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "丙酸盐(Propionate)",
+      "indicatorValue" : "71",
+      "unit" : "",
+      "refRange" : "15-90",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "乙酸盐(Acetate)",
+      "indicatorValue" : "21",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "短链脂肪酸",
+      "indicatorName" : "异戊酸盐(Isovaleric)",
+      "indicatorValue" : "6",
+      "unit" : "",
+      "refRange" : "5-85",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "血清素(5-HT)",
+      "indicatorValue" : "57",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "γ-氨基丁酸(GABA)",
+      "indicatorValue" : "8",
+      "unit" : "",
+      "refRange" : "15-85",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "谷氨酸(Glutamate)",
+      "indicatorValue" : "7",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "不足",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "色氨酸(Tryptophan)",
+      "indicatorValue" : "2",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "缺乏",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "DOPAC",
+      "indicatorValue" : "19",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "多巴胺",
+      "indicatorValue" : "94",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "组胺(Histamine)",
+      "indicatorValue" : "67",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "一氧化氮",
+      "indicatorValue" : "73",
+      "unit" : "",
+      "refRange" : "15-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "喹啉(Quinolinic)",
+      "indicatorValue" : "5",
+      "unit" : "",
+      "refRange" : "0-95",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "维生素K2",
+      "indicatorValue" : "75",
+      "unit" : "",
+      "refRange" : "15-99",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "神经递质与激素",
+      "indicatorName" : "肌醇(Inositol)",
+      "indicatorValue" : "31",
+      "unit" : "",
+      "refRange" : "15-99",
+      "status" : "正常",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "幽门螺杆菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "艰难梭菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "沙门氏菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "志贺氏菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    }, {
+      "category" : "主要消化道致病菌",
+      "indicatorName" : "弯曲杆菌",
+      "indicatorValue" : "0%",
+      "unit" : "",
+      "refRange" : "",
+      "status" : "未检出",
+      "symptoms" : "",
+      "collectionDate" : null
+    } ],
+    "gutFlora" : [ {
+      "bacteriaName" : "梭菌属 Clostridium",
+      "bacteriaValue" : "0.2787",
+      "normalRange" : "0.0306-6.9615",
+      "populationLevel" : "23%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:多导致人体炎症;致病;导致菌群失衡;产丁酸;肥胖人群丰度较高;参与胆汁酸代谢;对抗艰难梭菌;",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普雷沃氏菌属 Prevotella",
+      "bacteriaValue" : "60.0857",
+      "normalRange" : "0.3652-81.2736",
+      "populationLevel" : "96%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:核心菌,健康的植物性饮食相关菌,在自闭症、多发性硬化中减少;丰度高促炎,加剧过敏、",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃球菌属 Ruminococcus",
+      "bacteriaValue" : "1.6504",
+      "normalRange" : "0.266-33.2664",
+      "populationLevel" : "66%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:消化抗性淀粉、纤维素,丰度高促进肠炎和过敏相关疾病,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌属 Bacteroides",
+      "bacteriaValue" : "13.2781",
+      "normalRange" : "1.0292-55.9251",
+      "populationLevel" : "35%",
+      "detectionRate" : "99.04%",
+      "description" : "说明:基石菌,消化蔬菜和谷食,蛋白,降解复杂多糖,交叉喂养关键菌,维持免疫和肠道稳态,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "优杆菌属 Eubacterium",
+      "bacteriaValue" : "0.1712",
+      "normalRange" : "0.0574-5.8432",
+      "populationLevel" : "35%",
+      "detectionRate" : "98.56%",
+      "description" : "说明:基石菌,产短链脂肪酸尤其丁酸,有助于肠道健康,降解胆固醇、调节餐后血糖、",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Lachnoclostridium",
+      "bacteriaValue" : "0.2093",
+      "normalRange" : "0.117-6.2036",
+      "populationLevel" : "27%",
+      "detectionRate" : "98.56%",
+      "description" : "说明:丁酸,与内脏脂肪积累相关,与肥胖、高血压、糖尿病正相关,与肠道炎症、肠癌和阿尔茨海默病进展有关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪杆菌属 Faecalibacterium",
+      "bacteriaValue" : "3.2406",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "5.1543-18.1656",
+      "bacteriaValue" : "59%",
+      "normalRange" : "",
+      "populationLevel" : "98.08%",
+      "detectionRate" : "",
+      "description" : "说明:基石菌,丁酸生产菌,下一代",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "经黏液真杆菌属 Blautia",
+      "bacteriaValue" : "0.1206",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "0.3366-3.237",
+      "bacteriaValue" : "21%",
+      "normalRange" : "",
+      "populationLevel" : "97.60%",
+      "detectionRate" : "",
+      "description" : "说明:消化复合碳水化合物,健康菌,偏低与炎症肠病,营养不良相关,减肥有效菌,缓解炎症性疾病和代谢疾病,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "戴阿利斯特杆菌属 Dialister",
+      "bacteriaValue" : "0.0769",
+      "normalRange" : "0-13.9606",
+      "populationLevel" : "46%",
+      "detectionRate" : "96.15%",
+      "description" : "说明:代谢碳水化合物、产短链脂肪酸,许多种都可能导致感染,但是抑郁症患者缺乏,关节炎患者富集,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏菌属 Roseburia",
+      "bacteriaValue" : "1.1301",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "2.0832-31.457",
+      "bacteriaValue" : "57%",
+      "normalRange" : "",
+      "populationLevel" : "96.15%",
+      "detectionRate" : "",
+      "description" : "说明:基石菌,产丁酸,丙酸,乙酸,影响结肠运动,具抗炎特性,分解不可消化的碳水化合物,百岁老人富集,抗炎,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "直肠真杆菌属 Agathobacter",
+      "bacteriaValue" : "0.1342",
+      "normalRange" : "0-10.7816",
+      "populationLevel" : "40%",
+      "detectionRate" : "95.67%",
+      "description" : "说明:可利用抗性淀粉,具有抗炎和调节免疫功能的作用,类风湿性关节炎和溃疡性结肠炎人群显著减少。",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "吉米菌属 Gemmiger",
+      "bacteriaValue" : "0.1955",
+      "normalRange" : "0-5.149",
+      "populationLevel" : "40%",
+      "detectionRate" : "95.67%",
+      "description" : "说明:健康饮食,高果蔬、谷物及豆类饮食含量高,与雄激素分泌相关,缓解便秘,与脂肪堆积分布负相关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副拟杆菌属 Parabacteroides",
+      "bacteriaValue" : "0.7216",
+      "normalRange" : "0-5.433",
+      "populationLevel" : "45%",
+      "detectionRate" : "95.19%",
+      "description" : "说明:帮助糖脂代谢,改善高脂影响,产生强大的降解酶,参与胆碱代谢,顺产宝宝和长寿老人肠道丰富,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "另枝菌属 Alistipes",
+      "bacteriaValue" : "1.0104",
+      "normalRange" : "0-20.1524",
+      "populationLevel" : "71%",
+      "detectionRate" : "91.83%",
+      "description" : "说明:耐胆汁酸菌,丙酸,乙酸生产者,参与腐败途径产生氨、H2S、甲酚、吲哚和苯酚,诱发结直肠癌,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "毛螺菌属 Lachnospira",
+      "bacteriaValue" : "0.1943",
+      "normalRange" : "0-4.805",
+      "populationLevel" : "60%",
+      "detectionRate" : "88.94%",
+      "description" : "说明:基石菌,发酵代谢膳食纤维,利用果蔬果㬵产生乙酸,丁酸,与睡眠质量呈负相关,过少与多种疾病相关,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "考拉杆菌属 Phascolarctobacterium",
+      "bacteriaValue" : "0.0101",
+      "normalRange" : "0-8.8711",
+      "populationLevel" : "19%",
+      "detectionRate" : "88.94%",
+      "description" : "说明:东方人肠道的核心菌属,高易减肥,与水果蔬菜摄入相关,随年龄增加,在重度抑郁、阿尔茨海默病(AD)、自闭症儿童富集,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "巨单胞菌属 Megamonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-21.672",
+      "populationLevel" : "29%",
+      "detectionRate" : "87.50%",
+      "description" : "说明:发酵各种碳水化合物、产乙酸、丙酸、乳酸,自闭症谱系障碍、注意缺陷、多动障碍 (ADHD)急性脑卒中(AIS)",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪球菌属 Coprococcus",
+      "bacteriaValue" : "1.8668",
+      "normalRange" : "0-3.618",
+      "populationLevel" : "94%",
+      "detectionRate" : "86.06%",
+      "description" : "说明:可产丁酸,抑制免疫反应,降低过敏,抑郁、帕金森、认知障碍、便秘,慢性肾病、虚弱者减少,过多导致菌群紊乱,",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌属 Bifidobacterium",
+      "bacteriaValue" : "0.2396",
+      "normalRange" : "0.1914-14.598",
+      "populationLevel" : "50%",
+      "detectionRate" : "97.12%",
+      "description" : "说明:最重要的",
+      "category" : "核心菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "埃希氏菌属 Escherichia",
+      "bacteriaValue" : "0.0202",
+      "normalRange" : "0-9.3023",
+      "populationLevel" : "9%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:正常菌属,条件致病菌,过多致病,导致菌群失衡",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Streptococcus",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-1.3257",
+      "populationLevel" : "7%",
+      "detectionRate" : "99.52%",
+      "description" : "说明:可引起化脓性炎症,个别菌为",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌属 Desulfovibrio",
+      "bacteriaValue" : "0.4734",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "0-0.0999",
+      "bacteriaValue" : "95%",
+      "normalRange" : "",
+      "populationLevel" : "33.65%",
+      "detectionRate" : "",
+      "description" : "说明:属于变形菌门,产生硫化氢,导致炎症、腹泻,对肠道上皮具有毒性,导致胃肠道疾病,约50%人群的口腔和肠道会携带,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "螺杆菌属 Helicobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.036",
+      "populationLevel" : "86%",
+      "detectionRate" : "22.12%",
+      "description" : "说明:革兰氏阴性菌,微需氧菌,该菌属下的一些菌种被发现在人类上消化道内壁,部分种为致病菌,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "弓形菌属 Arcobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0066",
+      "populationLevel" : "96%",
+      "detectionRate" : "7.69%",
+      "description" : "说明:好氧菌,腹泻致病菌,与河流海洋污染相关的潜在病原菌,人畜共患菌",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "厌氧螺菌 Anaerobiospirillum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "99%",
+      "bacteriaValue" : "0.00%",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "说明:引起腹泻,感染,常见于猫狗体内,过多会导致菌群紊乱",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠球菌属 Enterococcus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-1.1362",
+      "populationLevel" : "41%",
+      "detectionRate" : "81.25%",
+      "description" : "说明:常见上呼吸道,口腔或肠道的常居菌,也分布在畜、禽养殖环境,饲料或肠道,抑菌调节肠道菌群,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "奈瑟氏菌属 Neisseria",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.05",
+      "populationLevel" : "80%",
+      "detectionRate" : "46.15%",
+      "description" : "说明:部分为人体病原菌,口腔,唾液,鼻腔,肺部正常菌,需氧,对干燥、热、消毒剂敏感,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "不动杆菌属 Acinetobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.2475",
+      "populationLevel" : "57%",
+      "detectionRate" : "45.19%",
+      "description" : "说明:条件致病菌,医院感染病原体之一,尤其ICU,易引起呼吸道感染、泌尿道感染、创伤感染,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "假单胞菌属 Pseudomonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0864",
+      "populationLevel" : "54%",
+      "detectionRate" : "45.19%",
+      "description" : "说明:属于变形菌门,在环境中广泛存在,代谢多变适应力强,好氧或微需,会导致感染和食物变质,医院获得性感染主要原因,",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "霍尔德曼氏菌属 Holdemania",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-0.0378",
+      "populationLevel" : "74%",
+      "detectionRate" : "29.33%",
+      "description" : "说明:肠道共生菌,降解黏蛋白,机会致病菌,少数研究表明与痛风正相关,帕金森,双向情感障碍,过敏,抑郁患者富集",
+      "category" : "有害菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "柯林斯氏菌属 Collinsella",
+      "bacteriaValue" : "0.2801",
+      "normalRange" : "0-5.7436",
+      "populationLevel" : "77%",
+      "detectionRate" : "90.38%",
+      "description" : "说明:产气菌,与脂质代谢及心脑血管相关,过多可导致菌群紊乱,部分病原菌",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "嗜胆菌属 Bilophila",
+      "bacteriaValue" : "0.1352",
+      "normalRange" : "0-0.3348",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "说明:条件致病菌,与耐胆汁酸和脂肪摄入相关,便秘人群丰度更高",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Flavonifractor",
+      "bacteriaValue" : "0.0033",
+      "normalRange" : "0-0.415",
+      "populationLevel" : "20%",
+      "detectionRate" : "91.83%",
+      "description" : "说明:参与肠道儿茶素代谢,减轻免疫反应,产丁酸",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Dorea菌属 Dorea",
+      "bacteriaValue" : "0.0501",
+      "normalRange" : "0.0144-2.49",
+      "populationLevel" : "32%",
+      "detectionRate" : "89.42%",
+      "description" : "说明:消化碳水化合物,多发性硬化症、炎症性肠病、结直肠癌、自闭症谱系障碍以及肥胖人群中高丰度富集,",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "亨盖特氏菌属 Hungatella",
+      "bacteriaValue" : "0.1249",
+      "normalRange" : "0-0.8235",
+      "populationLevel" : "64%",
+      "detectionRate" : "89.42%",
+      "description" : "说明:参与生成氧化三甲胺和牛磺酸。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "颤螺菌属 Oscillospira",
+      "bacteriaValue" : "0.2999",
+      "normalRange" : "0.0126-0.8558",
+      "populationLevel" : "81%",
+      "detectionRate" : "87.50%",
+      "description" : "说明:基石菌、核心菌群,帮助消化抗性淀粉,产丁酸,并在大肠中发酵。与儿童过敏和肥胖呈负相关。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "枸橼酸杆菌属 Citrobacter",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0668",
+      "populationLevel" : "37%",
+      "detectionRate" : "78.37%",
+      "description" : "说明:常见菌,免疫力下降可能引发感染。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Akkermansia",
+      "bacteriaValue" : "0.0135",
+      "normalRange" : "0.0018-7.8352",
+      "populationLevel" : "49%",
+      "detectionRate" : "74.52%",
+      "description" : "说明:基石菌,可降解淀粉,黏蛋白降解菌,可控制体重,改善代谢和炎症,过多导致肠粘膜屏障破坏。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌属 Enterobacter",
+      "bacteriaValue" : "0.0067",
+      "normalRange" : "0-0.083",
+      "populationLevel" : "60%",
+      "detectionRate" : "63.46%",
+      "description" : "说明:产酸产气,不引起腹泻,机会性感染,过多导致菌群紊乱和肥胖。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "苏黎世杆菌属 Turicibacter",
+      "bacteriaValue" : "0.0100",
+      "normalRange" : "0-0.2352",
+      "populationLevel" : "73%",
+      "detectionRate" : "49.52%",
+      "description" : "说明:发酵生成乳酸,参与肌肉和疲劳调节。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丁酸弧菌属 Butyrivibrio",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.8134",
+      "populationLevel" : "70%",
+      "detectionRate" : "35.58%",
+      "description" : "说明:利用纤维素、淀粉和其他多聚糖生成丁酸,有助于维持肠道上皮,发挥抗炎、抗氧化作用。可调节体内的氨水平,影响免疫。",
+      "category" : "其它重要菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "克里斯滕森氏菌属 Christensenella",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0072",
+      "populationLevel" : "82%",
+      "detectionRate" : "5.77%",
+      "description" : "说明:过多:肥胖,代谢综合征,包括高血压、高血糖、异常胆固醇水平和腹部肥胖,胰岛素抵抗",
+      "category" : "其它重要菌属",
+      "level" : ""
+    } ],
+    "probioticSpecies" : [ {
+      "bacteriaName" : "乳杆菌属 Lactobacillus",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏乳杆菌 Lactobacillus rogosae",
+      "bacteriaValue" : "0.737%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "76.92%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌属 Bifidobacterium",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "50%",
+      "detectionRate" : "97.12%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "青春双歧杆菌 Bifidobacterium adolescentis",
+      "bacteriaValue" : "0.209%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "95.67%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "长双歧杆菌 Bifidobacterium longum",
+      "bacteriaValue" : "0.027%",
+      "normalRange" : "",
+      "populationLevel" : "91%",
+      "detectionRate" : "73.08%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗伊氏乳杆菌 Lactobacillus reuteri",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "0.96%",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧双歧杆菌 Bifidobacterium bifidum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "链状双歧杆菌 Bifidobacterium catenulatum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "假长双歧杆菌 Bifidobacterium pseudolongum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "高卢双歧杆菌 Bifidobacterium gallicum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "排泄物双岐杆菌 Bifidobacterium stercoris",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副干酪乳杆菌 Lactobacillus paracasei",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "植物乳杆菌 Lactobacillus plantarum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "约氏乳杆菌 Lactobacillus johnsonii",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瑞士乳杆菌 Lactobacillus helveticus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "动物双歧杆菌 Bifidobacterium animalis",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "发酵乳杆菌 Lactobacillus fermentum",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "短双歧杆菌 Bifidobacterium breve",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "鼠李糖乳杆菌 Lactobacillus rhamnosus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "短乳杆菌 Lactobacillus brevis",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "德氏乳酸乳杆菌 Lactobacillus delbrueckii",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    }, {
+      "bacteriaName" : "嗜酸乳杆菌 Lactobacillus acidophilus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "益生菌",
+      "level" : ""
+    } ],
+    "taxonomyClass" : [ {
+      "bacteriaName" : "拟杆菌纲 Bacteroidia",
+      "bacteriaValue" : "76.721%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "98.00%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌纲 Clostridia",
+      "bacteriaValue" : "17.067%",
+      "normalRange" : "",
+      "populationLevel" : "26%",
+      "detectionRate" : "98.87%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "芽孢杆菌纲 Bacilli",
+      "bacteriaValue" : "1.594%",
+      "normalRange" : "",
+      "populationLevel" : "81%",
+      "detectionRate" : "86.08%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "德耳塔变形杆菌纲 Deltaproteobacteria",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "88%",
+      "detectionRate" : "60.76%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "β-变形菌纲 Betaproteobacteria",
+      "bacteriaValue" : "0.409%",
+      "normalRange" : "",
+      "populationLevel" : "38%",
+      "detectionRate" : "74.47%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌纲 Coriobacteriia",
+      "bacteriaValue" : "0.283%",
+      "normalRange" : "",
+      "populationLevel" : "79%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线杆菌纲 Actinobacteria",
+      "bacteriaValue" : "0.249%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "87.94%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Erysipelotrichi",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "68.47%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "γ-变形菌纲 Gammaproteobacteria",
+      "bacteriaValue" : "0.111%",
+      "normalRange" : "",
+      "populationLevel" : "8%",
+      "detectionRate" : "88.68%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Lentisphaeria",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "疣微菌纲 Verrucomicrobiae",
+      "bacteriaValue" : "0.013%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "53.76%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "柔膜体纲 Mollicutes",
+      "bacteriaValue" : "0.007%",
+      "normalRange" : "",
+      "populationLevel" : "71%",
+      "detectionRate" : "29.01%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "互养菌纲 Synergistia",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "24.61%",
+      "description" : "",
+      "category" : "菌纲构成",
+      "level" : ""
+    } ],
+    "taxonomyOrder" : [ {
+      "bacteriaName" : "拟杆菌目 Bacteroidales",
+      "bacteriaValue" : "76.721%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "98.00%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌目 Clostridiales",
+      "bacteriaValue" : "11.473%",
+      "normalRange" : "",
+      "populationLevel" : "20%",
+      "detectionRate" : "98.87%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌目 Lactobacillales",
+      "bacteriaValue" : "0.753%",
+      "normalRange" : "",
+      "populationLevel" : "72%",
+      "detectionRate" : "85.51%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌目 Desulfovibrionales",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "58.79%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "伯克氏菌目 Burkholderiales",
+      "bacteriaValue" : "0.409%",
+      "normalRange" : "",
+      "populationLevel" : "39%",
+      "detectionRate" : "74.19%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌目 Coriobacteriales",
+      "bacteriaValue" : "0.283%",
+      "normalRange" : "",
+      "populationLevel" : "79%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌目 Bifidobacteriales",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "51%",
+      "detectionRate" : "84.99%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丹毒丝菌目 Erysipelotrichales",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "65.82%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌目 Enterobacteriales",
+      "bacteriaValue" : "0.111%",
+      "normalRange" : "",
+      "populationLevel" : "12%",
+      "detectionRate" : "87.83%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Victivallales",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "疣微菌目 Verrucomicrobiales",
+      "bacteriaValue" : "0.013%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "53.76%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "互养菌目 Synergistales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "24.61%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线菌目 Actinomycetales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "19%",
+      "detectionRate" : "58.40%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "芽孢杆菌目 Bacillales",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "53%",
+      "detectionRate" : "42.30%",
+      "description" : "",
+      "category" : "菌目构成",
+      "level" : ""
+    } ],
+    "taxonomyFamily" : [ {
+      "bacteriaName" : "普雷沃氏菌科 Prevotellaceae",
+      "bacteriaValue" : "60.109%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "90.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌科 Bacteroidaceae",
+      "bacteriaValue" : "13.968%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "96.10%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃菌科 Ruminococcaceae",
+      "bacteriaValue" : "6.559%",
+      "normalRange" : "",
+      "populationLevel" : "44%",
+      "detectionRate" : "96.52%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "毛螺旋菌科 Lachnospiraceae",
+      "bacteriaValue" : "4.068%",
+      "normalRange" : "",
+      "populationLevel" : "28%",
+      "detectionRate" : "98.03%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "理化所菌科 Rikenellaceae",
+      "bacteriaValue" : "1.037%",
+      "normalRange" : "",
+      "populationLevel" : "88%",
+      "detectionRate" : "85.69%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌科 Lactobacillaceae",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "93%",
+      "detectionRate" : "62.55%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌科 Desulfovibrionaceae",
+      "bacteriaValue" : "0.609%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "58.79%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "梭菌科 Clostridiaceae",
+      "bacteriaValue" : "0.434%",
+      "normalRange" : "",
+      "populationLevel" : "74%",
+      "detectionRate" : "67.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "红蝽菌科 Coriobacteriaceae",
+      "bacteriaValue" : "0.280%",
+      "normalRange" : "",
+      "populationLevel" : "78%",
+      "detectionRate" : "79.61%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "双歧杆菌科 Bifidobacteriaceae",
+      "bacteriaValue" : "0.240%",
+      "normalRange" : "",
+      "populationLevel" : "51%",
+      "detectionRate" : "84.99%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "卟啉单胞菌科 Porphyromonadaceae",
+      "bacteriaValue" : "0.181%",
+      "normalRange" : "",
+      "populationLevel" : "29%",
+      "detectionRate" : "66.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "丹毒丝菌科 Erysipelotrichaceae",
+      "bacteriaValue" : "0.178%",
+      "normalRange" : "",
+      "populationLevel" : "54%",
+      "detectionRate" : "65.82%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "消化球菌科 Peptococcaceae",
+      "bacteriaValue" : "0.088%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "25.00%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠杆菌科 Enterobacteriaceae",
+      "bacteriaValue" : "0.064%",
+      "normalRange" : "",
+      "populationLevel" : "11%",
+      "detectionRate" : "87.83%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "食谷菌科 Victivallaceae",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "18.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "消化链球菌科 Peptostreptococcaceae",
+      "bacteriaValue" : "0.037%",
+      "normalRange" : "",
+      "populationLevel" : "93%",
+      "detectionRate" : "18.53%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "克里斯滕森氏菌科 Christensenellaceae",
+      "bacteriaValue" : "0.023%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "40.33%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "链球菌科 Streptococcaceae",
+      "bacteriaValue" : "0.010%",
+      "normalRange" : "",
+      "populationLevel" : "17%",
+      "detectionRate" : "69.20%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "放线菌科 Actinomycetaceae",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "27%",
+      "detectionRate" : "46.06%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "草酸杆菌科 Oxalobacteraceae",
+      "bacteriaValue" : "0.003%",
+      "normalRange" : "",
+      "populationLevel" : "63%",
+      "detectionRate" : "41.42%",
+      "description" : "",
+      "category" : "菌科构成",
+      "level" : ""
+    } ],
+    "taxonomyGenus" : [ {
+      "bacteriaName" : "普雷沃氏菌属 Prevotella",
+      "bacteriaValue" : "60.086%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌属 Bacteroides",
+      "bacteriaValue" : "13.278%",
+      "normalRange" : "",
+      "populationLevel" : "35%",
+      "detectionRate" : "99.04%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪杆菌属 Faecalibacterium",
+      "bacteriaValue" : "3.241%",
+      "normalRange" : "",
+      "populationLevel" : "59%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪球菌属 Coprococcus",
+      "bacteriaValue" : "1.867%",
+      "normalRange" : "",
+      "populationLevel" : "94%",
+      "detectionRate" : "86.06%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "光岗氏菌属 Mitsuokella",
+      "bacteriaValue" : "1.776%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "15.87%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "瘤胃球菌属 Ruminococcus",
+      "bacteriaValue" : "1.650%",
+      "normalRange" : "",
+      "populationLevel" : "66%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-127",
+      "bacteriaValue" : "1.534%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "58.65%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏菌属 Roseburia",
+      "bacteriaValue" : "1.130%",
+      "normalRange" : "",
+      "populationLevel" : "57%",
+      "detectionRate" : "96.15%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "别样杆菌属 Alistipes",
+      "bacteriaValue" : "1.010%",
+      "normalRange" : "",
+      "populationLevel" : "71%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "乳杆菌属 Lactobacillus",
+      "bacteriaValue" : "0.743%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "91.83%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "副拟杆菌属 Parabacteroides",
+      "bacteriaValue" : "0.722%",
+      "normalRange" : "",
+      "populationLevel" : "45%",
+      "detectionRate" : "95.19%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Mediterranea",
+      "bacteriaValue" : "0.690%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "4.81%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-83",
+      "bacteriaValue" : "0.614%",
+      "normalRange" : "",
+      "populationLevel" : "83%",
+      "detectionRate" : "76.44%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-110",
+      "bacteriaValue" : "0.529%",
+      "normalRange" : "",
+      "populationLevel" : "89%",
+      "detectionRate" : "71.15%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-1000",
+      "bacteriaValue" : "0.493%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "18.27%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脱硫弧菌属 Desulfovibrio",
+      "bacteriaValue" : "0.473%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "33.65%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-180",
+      "bacteriaValue" : "0.459%",
+      "normalRange" : "",
+      "populationLevel" : "72%",
+      "detectionRate" : "86.54%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "ER4",
+      "bacteriaValue" : "0.412%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "60.58%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "UBA11524",
+      "bacteriaValue" : "0.402%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "49.52%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "颤螺菌属 Oscillospira",
+      "bacteriaValue" : "0.300%",
+      "normalRange" : "",
+      "populationLevel" : "81%",
+      "detectionRate" : "87.50%",
+      "description" : "",
+      "category" : "菌属构成",
+      "level" : ""
+    } ],
+    "taxonomySpecies" : [ {
+      "bacteriaName" : "普氏菌 Prevotella copri",
+      "bacteriaValue" : "33.924%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "98.56%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp000434975",
+      "bacteriaValue" : "18.505%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "92.79%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪便拟杆菌 Bacteroides stercoris",
+      "bacteriaValue" : "3.939%",
+      "normalRange" : "",
+      "populationLevel" : "73%",
+      "detectionRate" : "97.12%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "拟杆菌 Bacteroides coprophilus",
+      "bacteriaValue" : "3.335%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "37.02%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普氏栖粪杆菌 Faecalibacterium prausnitzii",
+      "bacteriaValue" : "3.046%",
+      "normalRange" : "",
+      "populationLevel" : "58%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp002265625",
+      "bacteriaValue" : "2.815%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "24.04%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "粪居拟杆菌 Bacteroides coprocola",
+      "bacteriaValue" : "2.175%",
+      "normalRange" : "",
+      "populationLevel" : "90%",
+      "detectionRate" : "79.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "贾氏光岗氏菌 Mitsuokella jalaludinii",
+      "bacteriaValue" : "1.769%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "5.77%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "普通拟杆菌 Bacteroides vulgatus",
+      "bacteriaValue" : "1.545%",
+      "normalRange" : "",
+      "populationLevel" : "44%",
+      "detectionRate" : "98.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp002299635",
+      "bacteriaValue" : "1.446%",
+      "normalRange" : "",
+      "populationLevel" : "95%",
+      "detectionRate" : "51.44%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Prevotella sp000436695",
+      "bacteriaValue" : "1.082%",
+      "normalRange" : "",
+      "populationLevel" : "98%",
+      "detectionRate" : "15.38%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "规则粪球菌 Coprococcus eutactus",
+      "bacteriaValue" : "1.004%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "42.31%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Ruminococcus bicirculans",
+      "bacteriaValue" : "0.983%",
+      "normalRange" : "",
+      "populationLevel" : "92%",
+      "detectionRate" : "66.35%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "罗氏乳杆菌 Lactobacillus rogosae",
+      "bacteriaValue" : "0.737%",
+      "normalRange" : "",
+      "populationLevel" : "80%",
+      "detectionRate" : "76.92%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "食葡糖罗斯拜瑞氏菌 Roseburia inulinivorans",
+      "bacteriaValue" : "0.696%",
+      "normalRange" : "",
+      "populationLevel" : "76%",
+      "detectionRate" : "87.02%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Mediterranea massiliensis",
+      "bacteriaValue" : "0.690%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "3.85%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Coprococcus sp000154245",
+      "bacteriaValue" : "0.612%",
+      "normalRange" : "",
+      "populationLevel" : "96%",
+      "detectionRate" : "28.85%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "腐烂别样杆菌 Alistipes putredinis",
+      "bacteriaValue" : "0.551%",
+      "normalRange" : "",
+      "populationLevel" : "75%",
+      "detectionRate" : "79.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "CAG-83 sp000435555",
+      "bacteriaValue" : "0.534%",
+      "normalRange" : "",
+      "populationLevel" : "83%",
+      "detectionRate" : "73.08%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Parabacteroides sp000436495",
+      "bacteriaValue" : "0.497%",
+      "normalRange" : "",
+      "populationLevel" : "99%",
+      "detectionRate" : "4.33%",
+      "description" : "",
+      "category" : "菌种构成",
+      "level" : ""
+    } ],
+    "pathogenGenus" : [ {
+      "bacteriaName" : "嗜血杆菌属 Haemophilus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.7752",
+      "populationLevel" : "22%",
+      "detectionRate" : "94.23%",
+      "description" : "说明:病原菌,过多可导致菌群紊乱,可引发呼吸道感染,常见于呼吸道感染",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "沙门氏菌属 Salmonella",
+      "bacteriaValue" : "0.0236",
+      "normalRange" : "0-0.4104",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "说明:是引起食物中毒和肠道感染的常见病原菌之一",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "萨特氏菌属 Sutterella",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-2.266",
+      "populationLevel" : "21%",
+      "detectionRate" : "81.73%",
+      "description" : "说明:肠道共生菌,潜在病原菌,自闭症相关,减少IgA",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "棒杆菌属 Corynebacterium",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.2646",
+      "populationLevel" : "99%",
+      "detectionRate" : "52.88%",
+      "description" : "说明:可导致急性腹泻、腹痛、恶心",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "气单胞菌属 Aeromonas",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0334",
+      "populationLevel" : "80%",
+      "detectionRate" : "29.33%",
+      "description" : "说明:病原菌",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "葡萄球菌属 Staphylococcus",
+      "bacteriaValue" : "ND",
+      "normalRange" : "0-0.0105",
+      "populationLevel" : "78%",
+      "detectionRate" : "17.31%",
+      "description" : "说明:利用碳水化合物或氨基酸,产生乳酸。部分产生毒素,如金黄色葡萄球菌,可能引发肠道炎症、并影响肠道屏障功能",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "Vibrio",
+      "bacteriaValue" : "ND",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "99%",
+      "bacteriaValue" : "8.17%",
+      "normalRange" : "",
+      "populationLevel" : "",
+      "detectionRate" : "",
+      "description" : "说明:条件致病菌",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "沃氏嗜胆菌 Bilophila wadsworthia",
+      "bacteriaValue" : "0.135%",
+      "normalRange" : "",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠炎鼠伤寒沙门氏菌 Salmonella enterica",
+      "bacteriaValue" : "0.024%",
+      "normalRange" : "",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "大肠杆菌 Escherichia coli",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "10%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脆弱拟杆菌 Bacteroides fragilis",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "23%",
+      "detectionRate" : "93.27%",
+      "description" : "",
+      "category" : "病原菌属",
+      "level" : ""
+    } ],
+    "pathogenDetection" : [ {
+      "bacteriaName" : "沃氏嗜胆菌 Bilophila wadsworthia",
+      "bacteriaValue" : "0.135%",
+      "normalRange" : "",
+      "populationLevel" : "69%",
+      "detectionRate" : "66.83%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "肠炎鼠伤寒沙门氏菌 Salmonella enterica",
+      "bacteriaValue" : "0.024%",
+      "normalRange" : "",
+      "populationLevel" : "60%",
+      "detectionRate" : "87.98%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "大肠杆菌 Escherichia coli",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "10%",
+      "detectionRate" : "99.52%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    }, {
+      "bacteriaName" : "脆弱拟杆菌 Bacteroides fragilis",
+      "bacteriaValue" : "0.020%",
+      "normalRange" : "",
+      "populationLevel" : "23%",
+      "detectionRate" : "93.27%",
+      "description" : "",
+      "category" : "病原菌检出",
+      "level" : ""
+    } ],
+    "foods" : [ {
+      "name" : "大麦",
+      "category" : "主食",
+      "score" : 17,
+      "energyKj" : 1481,
+      "protein" : 12,
+      "fat" : 2,
+      "carbs" : 73,
+      "starch" : 0,
+      "fiber" : 17,
+      "cholesterol" : 0
+    }, {
+      "name" : "小米",
+      "category" : "主食",
+      "score" : 5,
+      "energyKj" : 1582,
+      "protein" : 11,
+      "fat" : 4,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "小麦",
+      "category" : "主食",
+      "score" : 10,
+      "energyKj" : 1423,
+      "protein" : 10,
+      "fat" : 1,
+      "carbs" : 75,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "小麦面包",
+      "category" : "主食",
+      "score" : -14,
+      "energyKj" : 1116,
+      "protein" : 10,
+      "fat" : 3,
+      "carbs" : 48,
+      "starch" : 36,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "意大利面",
+      "category" : "主食",
+      "score" : -4,
+      "energyKj" : 386,
+      "protein" : 1,
+      "fat" : 3,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "燕麦",
+      "category" : "主食",
+      "score" : 35,
+      "energyKj" : 297,
+      "protein" : 17,
+      "fat" : 6,
+      "carbs" : 66,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "玉米粒",
+      "category" : "主食",
+      "score" : 38,
+      "energyKj" : 298,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 14,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "米饭",
+      "category" : "主食",
+      "score" : -12,
+      "energyKj" : 1527,
+      "protein" : 7,
+      "fat" : 0,
+      "carbs" : 79,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "玉米饼",
+      "category" : "主食",
+      "score" : 7,
+      "energyKj" : 912,
+      "protein" : 5,
+      "fat" : 2,
+      "carbs" : 44,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "荞麦面粉",
+      "category" : "主食",
+      "score" : 0,
+      "energyKj" : 1402,
+      "protein" : 12,
+      "fat" : 3,
+      "carbs" : 70,
+      "starch" : 0,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄干浆即食谷物",
+      "category" : "主食",
+      "score" : 0,
+      "energyKj" : 1354,
+      "protein" : 7,
+      "fat" : 1,
+      "carbs" : 78,
+      "starch" : 0,
+      "fiber" : 13,
+      "cholesterol" : 0
+    }, {
+      "name" : "面条",
+      "category" : "主食",
+      "score" : -10,
+      "energyKj" : 1609,
+      "protein" : 14,
+      "fat" : 4,
+      "carbs" : 71,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 84
+    }, {
+      "name" : "鸡蛋面包",
+      "category" : "主食",
+      "score" : -11,
+      "energyKj" : 1201,
+      "protein" : 9,
+      "fat" : 6,
+      "carbs" : 47,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 51
+    }, {
+      "name" : "黑麦面包",
+      "category" : "主食",
+      "score" : -6,
+      "energyKj" : 1188,
+      "protein" : 9,
+      "fat" : 3,
+      "carbs" : 53,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "冰淇淋",
+      "category" : "乳制品",
+      "score" : -11,
+      "energyKj" : 690,
+      "protein" : 1,
+      "fat" : 3,
+      "carbs" : 32,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 8
+    }, {
+      "name" : "奶油",
+      "category" : "乳制品",
+      "score" : -20,
+      "energyKj" : 515,
+      "protein" : 3,
+      "fat" : 10,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 35
+    }, {
+      "name" : "奶酪",
+      "category" : "乳制品",
+      "score" : -8,
+      "energyKj" : 1552,
+      "protein" : 23,
+      "fat" : 29,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 94
+    }, {
+      "name" : "牛奶",
+      "category" : "乳制品",
+      "score" : 9,
+      "energyKj" : 268,
+      "protein" : 3,
+      "fat" : 3,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 14
+    }, {
+      "name" : "脱脂牛奶",
+      "category" : "乳制品",
+      "score" : 15,
+      "energyKj" : 142,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2
+    }, {
+      "name" : "黄油",
+      "category" : "乳制品",
+      "score" : -48,
+      "energyKj" : 2999,
+      "protein" : 0,
+      "fat" : 81,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 215
+    }, {
+      "name" : "山核桃",
+      "category" : "干果",
+      "score" : -15,
+      "energyKj" : 2889,
+      "protein" : 9,
+      "fat" : 71,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "山核桃干",
+      "category" : "干果",
+      "score" : -5,
+      "energyKj" : 2749,
+      "protein" : 12,
+      "fat" : 64,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "杏仁",
+      "category" : "干果",
+      "score" : -3,
+      "energyKj" : 2423,
+      "protein" : 21,
+      "fat" : 49,
+      "carbs" : 21,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "开心果",
+      "category" : "干果",
+      "score" : -13,
+      "energyKj" : 2392,
+      "protein" : 21,
+      "fat" : 45,
+      "carbs" : 28,
+      "starch" : 1,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "松子",
+      "category" : "干果",
+      "score" : -17,
+      "energyKj" : 2816,
+      "protein" : 13,
+      "fat" : 68,
+      "carbs" : 13,
+      "starch" : 1,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "栗子",
+      "category" : "干果",
+      "score" : 37,
+      "energyKj" : 1519,
+      "protein" : 6,
+      "fat" : 1,
+      "carbs" : 79,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "核桃",
+      "category" : "干果",
+      "score" : -10,
+      "energyKj" : 2738,
+      "protein" : 15,
+      "fat" : 65,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "椰肉",
+      "category" : "干果",
+      "score" : 0,
+      "energyKj" : 1481,
+      "protein" : 3,
+      "fat" : 33,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "榛子",
+      "category" : "干果",
+      "score" : 40,
+      "energyKj" : 2629,
+      "protein" : 14,
+      "fat" : 60,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "橡子",
+      "category" : "干果",
+      "score" : 36,
+      "energyKj" : 1619,
+      "protein" : 6,
+      "fat" : 23,
+      "carbs" : 40,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "腰果",
+      "category" : "干果",
+      "score" : -9,
+      "energyKj" : 2402,
+      "protein" : 15,
+      "fat" : 46,
+      "carbs" : 32,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "芝麻酱",
+      "category" : "干果",
+      "score" : 3,
+      "energyKj" : 2454,
+      "protein" : 18,
+      "fat" : 50,
+      "carbs" : 24,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "莲子",
+      "category" : "干果",
+      "score" : 53,
+      "energyKj" : 372,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葵花子",
+      "category" : "干果",
+      "score" : -1,
+      "energyKj" : 2445,
+      "protein" : 20,
+      "fat" : 51,
+      "carbs" : 20,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "银杏坚果",
+      "category" : "干果",
+      "score" : -8,
+      "energyKj" : 1456,
+      "protein" : 10,
+      "fat" : 2,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "比萨",
+      "category" : "快餐",
+      "score" : -12,
+      "energyKj" : 1121,
+      "protein" : 10,
+      "fat" : 12,
+      "carbs" : 29,
+      "starch" : 18,
+      "fiber" : 2,
+      "cholesterol" : 14
+    }, {
+      "name" : "热狗",
+      "category" : "快餐",
+      "score" : -17,
+      "energyKj" : 1167,
+      "protein" : 9,
+      "fat" : 3,
+      "carbs" : 50,
+      "starch" : 36,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "鸡米花",
+      "category" : "快餐",
+      "score" : -20,
+      "energyKj" : 1469,
+      "protein" : 17,
+      "fat" : 21,
+      "carbs" : 21,
+      "starch" : 18,
+      "fiber" : 1,
+      "cholesterol" : 40
+    }, {
+      "name" : "三文鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 594,
+      "protein" : 19,
+      "fat" : 6,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "凤尾鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 548,
+      "protein" : 20,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "墨鱼",
+      "category" : "水产品",
+      "score" : 8,
+      "energyKj" : 331,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 112
+    }, {
+      "name" : "大比目鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 382,
+      "protein" : 18,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 49
+    }, {
+      "name" : "大西洋鳕鱼",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 343,
+      "protein" : 17,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 43
+    }, {
+      "name" : "小龙虾",
+      "category" : "水产品",
+      "score" : 13,
+      "energyKj" : 322,
+      "protein" : 15,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 114
+    }, {
+      "name" : "扇贝",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 289,
+      "protein" : 12,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 2,
+      "fiber" : 0,
+      "cholesterol" : 24
+    }, {
+      "name" : "条纹鲈鱼",
+      "category" : "水产品",
+      "score" : 18,
+      "energyKj" : 406,
+      "protein" : 17,
+      "fat" : 2,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 80
+    }, {
+      "name" : "海鲈鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 332,
+      "protein" : 15,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 52
+    }, {
+      "name" : "牡蛎",
+      "category" : "水产品",
+      "score" : 14,
+      "energyKj" : 339,
+      "protein" : 9,
+      "fat" : 2,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "白鲑",
+      "category" : "水产品",
+      "score" : 10,
+      "energyKj" : 611,
+      "protein" : 17,
+      "fat" : 8,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 65
+    }, {
+      "name" : "石斑鱼",
+      "category" : "水产品",
+      "score" : 23,
+      "energyKj" : 385,
+      "protein" : 19,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 37
+    }, {
+      "name" : "章鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 343,
+      "protein" : 14,
+      "fat" : 1,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 48
+    }, {
+      "name" : "虾",
+      "category" : "水产品",
+      "score" : -2,
+      "energyKj" : 297,
+      "protein" : 13,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 126
+    }, {
+      "name" : "蛤蜊",
+      "category" : "水产品",
+      "score" : 0,
+      "energyKj" : 360,
+      "protein" : 14,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 1,
+      "fiber" : 0,
+      "cholesterol" : 30
+    }, {
+      "name" : "蟹",
+      "category" : "水产品",
+      "score" : 13,
+      "energyKj" : 364,
+      "protein" : 18,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 78
+    }, {
+      "name" : "贻贝",
+      "category" : "水产品",
+      "score" : 4,
+      "energyKj" : 360,
+      "protein" : 11,
+      "fat" : 2,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 28
+    }, {
+      "name" : "金枪鱼",
+      "category" : "水产品",
+      "score" : 15,
+      "energyKj" : 602,
+      "protein" : 23,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 38
+    }, {
+      "name" : "鱼子酱",
+      "category" : "水产品",
+      "score" : -19,
+      "energyKj" : 1105,
+      "protein" : 24,
+      "fat" : 17,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 588
+    }, {
+      "name" : "鱿鱼",
+      "category" : "水产品",
+      "score" : 9,
+      "energyKj" : 385,
+      "protein" : 15,
+      "fat" : 1,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 233
+    }, {
+      "name" : "鲈鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 381,
+      "protein" : 19,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "鲍鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 439,
+      "protein" : 17,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 85
+    }, {
+      "name" : "鲟鱼",
+      "category" : "水产品",
+      "score" : 12,
+      "energyKj" : 439,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "鲤鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 531,
+      "protein" : 17,
+      "fat" : 5,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 66
+    }, {
+      "name" : "鲭鱼",
+      "category" : "水产品",
+      "score" : 4,
+      "energyKj" : 858,
+      "protein" : 18,
+      "fat" : 13,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 70
+    }, {
+      "name" : "鲱鱼",
+      "category" : "水产品",
+      "score" : 2,
+      "energyKj" : 661,
+      "protein" : 17,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 60
+    }, {
+      "name" : "鲶鱼",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 519,
+      "protein" : 20,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 59
+    }, {
+      "name" : "鲷鱼",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 418,
+      "protein" : 20,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 37
+    }, {
+      "name" : "鲽鱼",
+      "category" : "水产品",
+      "score" : 3,
+      "energyKj" : 294,
+      "protein" : 12,
+      "fat" : 1,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 45
+    }, {
+      "name" : "鳕鱼",
+      "category" : "水产品",
+      "score" : 16,
+      "energyKj" : 364,
+      "protein" : 18,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 41
+    }, {
+      "name" : "鳗鱼",
+      "category" : "水产品",
+      "score" : 5,
+      "energyKj" : 770,
+      "protein" : 18,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 126
+    }, {
+      "name" : "鳟鱼",
+      "category" : "水产品",
+      "score" : 11,
+      "energyKj" : 619,
+      "protein" : 20,
+      "fat" : 6,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 58
+    }, {
+      "name" : "沙丁鱼",
+      "category" : "水产品",
+      "score" : 19,
+      "energyKj" : 347,
+      "protein" : 0,
+      "fat" : 1,
+      "carbs" : 19,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄尾",
+      "category" : "水产品",
+      "score" : 17,
+      "energyKj" : 611,
+      "protein" : 23,
+      "fat" : 5,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "龙虾",
+      "category" : "水产品",
+      "score" : 3,
+      "energyKj" : 324,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 127
+    }, {
+      "name" : "无花果",
+      "category" : "水果",
+      "score" : 15,
+      "energyKj" : 310,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 19,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "李子",
+      "category" : "水果",
+      "score" : 13,
+      "energyKj" : 192,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "杏",
+      "category" : "水果",
+      "score" : 2,
+      "energyKj" : 201,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "杨桃",
+      "category" : "水果",
+      "score" : 57,
+      "energyKj" : 128,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "枣",
+      "category" : "水果",
+      "score" : -6,
+      "energyKj" : 1176,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 72,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "柠檬",
+      "category" : "水果",
+      "score" : 58,
+      "energyKj" : 121,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "柿子",
+      "category" : "水果",
+      "score" : 16,
+      "energyKj" : 293,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "桃",
+      "category" : "水果",
+      "score" : 3,
+      "energyKj" : 165,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "桑葚",
+      "category" : "水果",
+      "score" : 50,
+      "energyKj" : 180,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "梨",
+      "category" : "水果",
+      "score" : 55,
+      "energyKj" : 239,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "榴莲",
+      "category" : "水果",
+      "score" : 43,
+      "energyKj" : 615,
+      "protein" : 1,
+      "fat" : 5,
+      "carbs" : 27,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "樱桃",
+      "category" : "水果",
+      "score" : 20,
+      "energyKj" : 1395,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 80,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "哈密瓜",
+      "category" : "水果",
+      "score" : 6,
+      "energyKj" : 141,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "橘子",
+      "category" : "水果",
+      "score" : 1,
+      "energyKj" : 197,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙汁",
+      "category" : "水果",
+      "score" : 47,
+      "energyKj" : 188,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙皮",
+      "category" : "水果",
+      "score" : 38,
+      "energyKj" : 405,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 25,
+      "starch" : 0,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "橙菠萝汁",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 214,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 12,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "油桃",
+      "category" : "水果",
+      "score" : 3,
+      "energyKj" : 185,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "猕猴桃",
+      "category" : "水果",
+      "score" : 32,
+      "energyKj" : 255,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜瓜",
+      "category" : "水果",
+      "score" : -4,
+      "energyKj" : 150,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "番木瓜",
+      "category" : "水果",
+      "score" : 32,
+      "energyKj" : 179,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "石榴",
+      "category" : "水果",
+      "score" : 46,
+      "energyKj" : 346,
+      "protein" : 1,
+      "fat" : 1,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "红苹果",
+      "category" : "水果",
+      "score" : 13,
+      "energyKj" : 247,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芒果",
+      "category" : "水果",
+      "score" : -11,
+      "energyKj" : 250,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "苹果",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 218,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "苹果汁",
+      "category" : "水果",
+      "score" : -19,
+      "energyKj" : 191,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "草莓",
+      "category" : "水果",
+      "score" : 37,
+      "energyKj" : 136,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "荔枝",
+      "category" : "水果",
+      "score" : 25,
+      "energyKj" : 276,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠萝",
+      "category" : "水果",
+      "score" : 1,
+      "energyKj" : 209,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠萝蜜",
+      "category" : "水果",
+      "score" : 14,
+      "energyKj" : 397,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 23,
+      "starch" : 1,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄",
+      "category" : "水果",
+      "score" : 40,
+      "energyKj" : 280,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄干",
+      "category" : "水果",
+      "score" : -38,
+      "energyKj" : 264,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "葡萄柚",
+      "category" : "水果",
+      "score" : 54,
+      "energyKj" : 134,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "蓝莓",
+      "category" : "水果",
+      "score" : 40,
+      "energyKj" : 240,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 14,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "蔓越莓",
+      "category" : "水果",
+      "score" : 33,
+      "energyKj" : 191,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "西瓜",
+      "category" : "水果",
+      "score" : 19,
+      "energyKj" : 127,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "覆盆子",
+      "category" : "水果",
+      "score" : 42,
+      "energyKj" : 220,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "面包果酱",
+      "category" : "水果",
+      "score" : 15,
+      "energyKj" : 431,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 27,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "香蕉",
+      "category" : "水果",
+      "score" : 10,
+      "energyKj" : 371,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 22,
+      "starch" : 5,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "鳄梨",
+      "category" : "水果",
+      "score" : 37,
+      "energyKj" : 670,
+      "protein" : 2,
+      "fat" : 14,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 6,
+      "cholesterol" : 0
+    }, {
+      "name" : "黑莓",
+      "category" : "水果",
+      "score" : 61,
+      "energyKj" : 181,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "龙眼",
+      "category" : "水果",
+      "score" : 55,
+      "energyKj" : 251,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 15,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "番茄汤",
+      "category" : "汤",
+      "score" : 8,
+      "energyKj" : 165,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆蔬菜汤",
+      "category" : "汤",
+      "score" : -5,
+      "energyKj" : 126,
+      "protein" : 1,
+      "fat" : 1,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 1
+    }, {
+      "name" : "素食蔬菜汤",
+      "category" : "汤",
+      "score" : -5,
+      "energyKj" : 119,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "火腿",
+      "category" : "肉类",
+      "score" : -11,
+      "energyKj" : 683,
+      "protein" : 16,
+      "fat" : 8,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 57
+    }, {
+      "name" : "火鸡",
+      "category" : "肉类",
+      "score" : 4,
+      "energyKj" : 790,
+      "protein" : 28,
+      "fat" : 7,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 109
+    }, {
+      "name" : "烟熏火腿",
+      "category" : "肉类",
+      "score" : -14,
+      "energyKj" : 591,
+      "protein" : 18,
+      "fat" : 2,
+      "carbs" : 10,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "烤肉",
+      "category" : "肉类",
+      "score" : -11,
+      "energyKj" : 1512,
+      "protein" : 20,
+      "fat" : 30,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 105
+    }, {
+      "name" : "烤鸭",
+      "category" : "肉类",
+      "score" : -6,
+      "energyKj" : 1410,
+      "protein" : 18,
+      "fat" : 28,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 84
+    }, {
+      "name" : "烧鹅",
+      "category" : "肉类",
+      "score" : 0,
+      "energyKj" : 1276,
+      "protein" : 25,
+      "fat" : 21,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 91
+    }, {
+      "name" : "牛肉汤",
+      "category" : "肉类",
+      "score" : -2,
+      "energyKj" : 25,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "牛肉瘦",
+      "category" : "肉类",
+      "score" : 7,
+      "energyKj" : 488,
+      "protein" : 23,
+      "fat" : 2,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 55
+    }, {
+      "name" : "牛肉肥",
+      "category" : "肉类",
+      "score" : -29,
+      "energyKj" : 2845,
+      "protein" : 10,
+      "fat" : 70,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 95
+    }, {
+      "name" : "牛蛙",
+      "category" : "肉类",
+      "score" : 12,
+      "energyKj" : 305,
+      "protein" : 16,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 50
+    }, {
+      "name" : "猪培根",
+      "category" : "肉类",
+      "score" : -28,
+      "energyKj" : 1744,
+      "protein" : 12,
+      "fat" : 39,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 66
+    }, {
+      "name" : "猪头肉",
+      "category" : "肉类",
+      "score" : -18,
+      "energyKj" : 658,
+      "protein" : 13,
+      "fat" : 10,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 69
+    }, {
+      "name" : "猪瘦肉",
+      "category" : "肉类",
+      "score" : 11,
+      "energyKj" : 562,
+      "protein" : 21,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 64
+    }, {
+      "name" : "猪耳朵",
+      "category" : "肉类",
+      "score" : 1,
+      "energyKj" : 695,
+      "protein" : 15,
+      "fat" : 10,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "猪肝",
+      "category" : "肉类",
+      "score" : 14,
+      "energyKj" : 690,
+      "protein" : 26,
+      "fat" : 4,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 355
+    }, {
+      "name" : "猪脑",
+      "category" : "肉类",
+      "score" : -21,
+      "energyKj" : 577,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2552
+    }, {
+      "name" : "猪蹄",
+      "category" : "肉类",
+      "score" : 1,
+      "energyKj" : 889,
+      "protein" : 23,
+      "fat" : 12,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 88
+    }, {
+      "name" : "瘦羊肉",
+      "category" : "肉类",
+      "score" : 12,
+      "energyKj" : 862,
+      "protein" : 28,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 92
+    }, {
+      "name" : "肉丸",
+      "category" : "肉类",
+      "score" : -25,
+      "energyKj" : 1196,
+      "protein" : 14,
+      "fat" : 22,
+      "carbs" : 8,
+      "starch" : 2,
+      "fiber" : 2,
+      "cholesterol" : 66
+    }, {
+      "name" : "肥猪肉",
+      "category" : "肉类",
+      "score" : -34,
+      "energyKj" : 2449,
+      "protein" : 10,
+      "fat" : 60,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 81
+    }, {
+      "name" : "肥羊肉",
+      "category" : "肉类",
+      "score" : -32,
+      "energyKj" : 2782,
+      "protein" : 6,
+      "fat" : 70,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 90
+    }, {
+      "name" : "鸡心",
+      "category" : "肉类",
+      "score" : 9,
+      "energyKj" : 640,
+      "protein" : 15,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 136
+    }, {
+      "name" : "鸡汤",
+      "category" : "肉类",
+      "score" : -8,
+      "energyKj" : 26,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 2
+    }, {
+      "name" : "鸡肉",
+      "category" : "肉类",
+      "score" : -2,
+      "energyKj" : 604,
+      "protein" : 28,
+      "fat" : 3,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 86
+    }, {
+      "name" : "鸡肝",
+      "category" : "肉类",
+      "score" : 2,
+      "energyKj" : 496,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 345
+    }, {
+      "name" : "鹅肝",
+      "category" : "肉类",
+      "score" : 9,
+      "energyKj" : 556,
+      "protein" : 16,
+      "fat" : 4,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 515
+    }, {
+      "name" : "鹌鹑",
+      "category" : "肉类",
+      "score" : 8,
+      "energyKj" : 803,
+      "protein" : 19,
+      "fat" : 12,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 76
+    }, {
+      "name" : "南瓜",
+      "category" : "蔬菜",
+      "score" : 66,
+      "energyKj" : 109,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "卷心菜",
+      "category" : "蔬菜",
+      "score" : 51,
+      "energyKj" : 103,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "四季豆",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 131,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆",
+      "category" : "蔬菜",
+      "score" : 57,
+      "energyKj" : 322,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 15,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "土豆面粉",
+      "category" : "蔬菜",
+      "score" : 48,
+      "energyKj" : 1493,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 83,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "大白菜",
+      "category" : "蔬菜",
+      "score" : 75,
+      "energyKj" : 55,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "大蒜",
+      "category" : "蔬菜",
+      "score" : 47,
+      "energyKj" : 623,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 33,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "大豆",
+      "category" : "蔬菜",
+      "score" : 72,
+      "energyKj" : 614,
+      "protein" : 12,
+      "fat" : 6,
+      "carbs" : 11,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "小南瓜",
+      "category" : "蔬菜",
+      "score" : 0,
+      "energyKj" : 69,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "小萝卜",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 76,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "山药",
+      "category" : "蔬菜",
+      "score" : 56,
+      "energyKj" : 343,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 20,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "扁豆",
+      "category" : "豆类及豆制品",
+      "score" : 55,
+      "energyKj" : 1473,
+      "protein" : 24,
+      "fat" : 1,
+      "carbs" : 63,
+      "starch" : 49,
+      "fiber" : 10,
+      "cholesterol" : 0
+    }, {
+      "name" : "木薯",
+      "category" : "蔬菜",
+      "score" : 36,
+      "energyKj" : 667,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 38,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "洋葱",
+      "category" : "蔬菜",
+      "score" : 45,
+      "energyKj" : 166,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "炒蘑菇",
+      "category" : "蔬菜",
+      "score" : 24,
+      "energyKj" : 110,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "炒香菇",
+      "category" : "蔬菜",
+      "score" : 17,
+      "energyKj" : 162,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "牛蒡根",
+      "category" : "蔬菜",
+      "score" : 78,
+      "energyKj" : 302,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 17,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甘薯",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 359,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 20,
+      "starch" : 12,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜椒",
+      "category" : "蔬菜",
+      "score" : 65,
+      "energyKj" : 84,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜玉米",
+      "category" : "蔬菜",
+      "score" : 42,
+      "energyKj" : 360,
+      "protein" : 3,
+      "fat" : 1,
+      "carbs" : 18,
+      "starch" : 5,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜菜",
+      "category" : "蔬菜",
+      "score" : 67,
+      "energyKj" : 180,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "甜菜叶",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 92,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "生姜",
+      "category" : "蔬菜",
+      "score" : 86,
+      "energyKj" : 75,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "生菜",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 62,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "番茄汁",
+      "category" : "蔬菜",
+      "score" : 0,
+      "energyKj" : 72,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "白菜",
+      "category" : "蔬菜",
+      "score" : 59,
+      "energyKj" : 48,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "白萝卜",
+      "category" : "蔬菜",
+      "score" : 81,
+      "energyKj" : 59,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "白蘑菇",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 93,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "秋葵",
+      "category" : "蔬菜",
+      "score" : 62,
+      "energyKj" : 138,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "竹笋",
+      "category" : "蔬菜",
+      "score" : 81,
+      "energyKj" : 115,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "红心萝卜",
+      "category" : "蔬菜",
+      "score" : 76,
+      "energyKj" : 132,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "红豆",
+      "category" : "蔬菜",
+      "score" : 38,
+      "energyKj" : 121,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "绿豆",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 126,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "羽衣甘蓝",
+      "category" : "蔬菜",
+      "score" : 80,
+      "energyKj" : 207,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 8,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "胡萝卜",
+      "category" : "蔬菜",
+      "score" : 33,
+      "energyKj" : 173,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 9,
+      "starch" : 1,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芋头",
+      "category" : "蔬菜",
+      "score" : 62,
+      "energyKj" : 469,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 26,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "芝麻",
+      "category" : "蔬菜",
+      "score" : 57,
+      "energyKj" : 2397,
+      "protein" : 17,
+      "fat" : 49,
+      "carbs" : 23,
+      "starch" : 0,
+      "fiber" : 11,
+      "cholesterol" : 0
+    }, {
+      "name" : "芥末",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 114,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "芦笋",
+      "category" : "蔬菜",
+      "score" : 71,
+      "energyKj" : 85,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "花椒",
+      "category" : "蔬菜",
+      "score" : 77,
+      "energyKj" : 80,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "花椰菜",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 104,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "芹菜",
+      "category" : "蔬菜",
+      "score" : 60,
+      "energyKj" : 67,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "苦瓜",
+      "category" : "蔬菜",
+      "score" : 72,
+      "energyKj" : 126,
+      "protein" : 5,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "茄子",
+      "category" : "蔬菜",
+      "score" : 59,
+      "energyKj" : 104,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "苋菜叶",
+      "category" : "蔬菜",
+      "score" : 50,
+      "energyKj" : 97,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "菊苣",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 71,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "菜豆",
+      "category" : "蔬菜",
+      "score" : 70,
+      "energyKj" : 280,
+      "protein" : 6,
+      "fat" : 0,
+      "carbs" : 13,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "菠菜",
+      "category" : "蔬菜",
+      "score" : 68,
+      "energyKj" : 97,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "蕨类",
+      "category" : "蔬菜",
+      "score" : 80,
+      "energyKj" : 143,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "藜",
+      "category" : "蔬菜",
+      "score" : 83,
+      "energyKj" : 180,
+      "protein" : 4,
+      "fat" : 0,
+      "carbs" : 7,
+      "starch" : 0,
+      "fiber" : 4,
+      "cholesterol" : 0
+    }, {
+      "name" : "蘑菇",
+      "category" : "蔬菜",
+      "score" : 64,
+      "energyKj" : 141,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "西兰花",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 141,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "西红柿",
+      "category" : "蔬菜",
+      "score" : 74,
+      "energyKj" : 74,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "豆芽",
+      "category" : "蔬菜",
+      "score" : 69,
+      "energyKj" : 510,
+      "protein" : 13,
+      "fat" : 6,
+      "carbs" : 9,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "豇豆",
+      "category" : "蔬菜",
+      "score" : 73,
+      "energyKj" : 376,
+      "protein" : 2,
+      "fat" : 0,
+      "carbs" : 18,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "豌豆",
+      "category" : "豆类及豆制品",
+      "score" : 72,
+      "energyKj" : 1435,
+      "protein" : 21,
+      "fat" : 1,
+      "carbs" : 62,
+      "starch" : 0,
+      "fiber" : 15,
+      "cholesterol" : 0
+    }, {
+      "name" : "辣椒",
+      "category" : "蔬菜",
+      "score" : 35,
+      "energyKj" : 88,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 5,
+      "starch" : 0,
+      "fiber" : 1,
+      "cholesterol" : 0
+    }, {
+      "name" : "韭菜",
+      "category" : "蔬菜",
+      "score" : 47,
+      "energyKj" : 126,
+      "protein" : 3,
+      "fat" : 0,
+      "carbs" : 4,
+      "starch" : 0,
+      "fiber" : 2,
+      "cholesterol" : 0
+    }, {
+      "name" : "香菇",
+      "category" : "蔬菜",
+      "score" : 63,
+      "energyKj" : 160,
+      "protein" : 1,
+      "fat" : 0,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 3,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄瓜",
+      "category" : "蔬菜",
+      "score" : 61,
+      "energyKj" : 65,
+      "protein" : 0,
+      "fat" : 0,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "水煮蛋",
+      "category" : "蛋类",
+      "score" : -13,
+      "energyKj" : 597,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 370
+    }, {
+      "name" : "炒蛋",
+      "category" : "蛋类",
+      "score" : -22,
+      "energyKj" : 621,
+      "protein" : 9,
+      "fat" : 10,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 277
+    }, {
+      "name" : "煎蛋",
+      "category" : "蛋类",
+      "score" : -24,
+      "energyKj" : 643,
+      "protein" : 10,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 313
+    }, {
+      "name" : "鸡蛋",
+      "category" : "蛋类",
+      "score" : -12,
+      "energyKj" : 599,
+      "protein" : 12,
+      "fat" : 9,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 372
+    }, {
+      "name" : "鸡蛋白",
+      "category" : "蛋类",
+      "score" : 10,
+      "energyKj" : 216,
+      "protein" : 10,
+      "fat" : 0,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "鸡蛋黄",
+      "category" : "蛋类",
+      "score" : -26,
+      "energyKj" : 1346,
+      "protein" : 15,
+      "fat" : 26,
+      "carbs" : 3,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 1085
+    }, {
+      "name" : "鹌鹑蛋",
+      "category" : "蛋类",
+      "score" : -14,
+      "energyKj" : 663,
+      "protein" : 13,
+      "fat" : 11,
+      "carbs" : 0,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 844
+    }, {
+      "name" : "利马豆",
+      "category" : "豆类及豆制品",
+      "score" : 21,
+      "energyKj" : 1414,
+      "protein" : 21,
+      "fat" : 0,
+      "carbs" : 63,
+      "starch" : 0,
+      "fiber" : 19,
+      "cholesterol" : 0
+    }, {
+      "name" : "大豆面粉",
+      "category" : "豆类及豆制品",
+      "score" : 11,
+      "energyKj" : 1816,
+      "protein" : 37,
+      "fat" : 20,
+      "carbs" : 31,
+      "starch" : 0,
+      "fiber" : 9,
+      "cholesterol" : 0
+    }, {
+      "name" : "嫩豆腐",
+      "category" : "豆类及豆制品",
+      "score" : 18,
+      "energyKj" : 253,
+      "protein" : 7,
+      "fat" : 3,
+      "carbs" : 1,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "纳豆",
+      "category" : "豆类及豆制品",
+      "score" : 16,
+      "energyKj" : 883,
+      "protein" : 19,
+      "fat" : 11,
+      "carbs" : 12,
+      "starch" : 0,
+      "fiber" : 5,
+      "cholesterol" : 0
+    }, {
+      "name" : "羽扇豆",
+      "category" : "豆类及豆制品",
+      "score" : 26,
+      "energyKj" : 1554,
+      "protein" : 36,
+      "fat" : 9,
+      "carbs" : 40,
+      "starch" : 0,
+      "fiber" : 18,
+      "cholesterol" : 0
+    }, {
+      "name" : "老豆腐",
+      "category" : "豆类及豆制品",
+      "score" : 19,
+      "energyKj" : 326,
+      "protein" : 9,
+      "fat" : 4,
+      "carbs" : 2,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "花生",
+      "category" : "豆类及豆制品",
+      "score" : 4,
+      "energyKj" : 2374,
+      "protein" : 25,
+      "fat" : 49,
+      "carbs" : 16,
+      "starch" : 0,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "花生酱",
+      "category" : "豆类及豆制品",
+      "score" : -14,
+      "energyKj" : 2464,
+      "protein" : 24,
+      "fat" : 49,
+      "carbs" : 21,
+      "starch" : 4,
+      "fiber" : 8,
+      "cholesterol" : 0
+    }, {
+      "name" : "蚕豆",
+      "category" : "豆类及豆制品",
+      "score" : 25,
+      "energyKj" : 1425,
+      "protein" : 26,
+      "fat" : 1,
+      "carbs" : 58,
+      "starch" : 0,
+      "fiber" : 25,
+      "cholesterol" : 0
+    }, {
+      "name" : "豆浆",
+      "category" : "豆类及豆制品",
+      "score" : 19,
+      "energyKj" : 226,
+      "protein" : 3,
+      "fat" : 1,
+      "carbs" : 6,
+      "starch" : 0,
+      "fiber" : 0,
+      "cholesterol" : 0
+    }, {
+      "name" : "鹰嘴豆",
+      "category" : "豆类及豆制品",
+      "score" : 12,
+      "energyKj" : 1581,
+      "protein" : 20,
+      "fat" : 6,
+      "carbs" : 62,
+      "starch" : 0,
+      "fiber" : 12,
+      "cholesterol" : 0
+    }, {
+      "name" : "黄豆",
+      "category" : "豆类及豆制品",
+      "score" : 27,
+      "energyKj" : 1443,
+      "protein" : 22,
+      "fat" : 2,
+      "carbs" : 60,
+      "starch" : 0,
+      "fiber" : 25,
+      "cholesterol" : 0
+    } ],
+    "diseaseRisks" : [ {
+      "diseaseName" : "炎症性肠炎",
+      "riskValue" : "0.24",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "结直肠癌",
+      "riskValue" : "0.26",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肠易激综合征",
+      "riskValue" : "0.18",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "感染性腹泻",
+      "riskValue" : "0.16",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "胃病",
+      "riskValue" : "0.20",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肝病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "胆病",
+      "riskValue" : "0.14",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "肾病",
+      "riskValue" : "0.05",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "心脑血管疾病",
+      "riskValue" : "0.37",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "II型糖尿病",
+      "riskValue" : "0.21",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "抑郁症",
+      "riskValue" : "0.27",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "甲状腺疾病",
+      "riskValue" : "0.33",
+      "riskLevel" : "注意"
+    }, {
+      "diseaseName" : "肺部感染或疾病",
+      "riskValue" : "0.12",
+      "riskLevel" : "低风险"
+    }, {
+      "diseaseName" : "自体免疫病",
+      "riskValue" : "0.08",
+      "riskLevel" : "低风险"
+    } ]
+  },
+  "matchedMemberId" : null,
+  "confidence" : 0.2,
+  "matchLabel" : "no_match",
+  "candidates" : [ {
+    "id" : 12,
+    "name" : "老大",
+    "nickname" : "老大",
+    "gender" : "male",
+    "age" : 0,
+    "similarityScore" : 0.2,
+    "matchFields" : "gender"
+  } ],
+  "extractedName" : "某人",
+  "extractedGender" : "male",
+  "extractedAge" : 53,
+  "needBind" : true
+}