소스 검색

build paper html md

zhangjie 2 년 전
부모
커밋
c276a7a3c2

+ 18 - 2
src/modules/paper-export/components/PaperTemplateView.vue

@@ -32,9 +32,19 @@
                     class="page-column-element"
                     :data="element"
                   ></topic-element-preview>
+                  <!-- paper question info  -->
+                  <template v-if="column.texts && column.texts.length">
+                    <elem-rich-text
+                      v-for="elem in column.texts"
+                      :id="`rich-text-${elem.id}`"
+                      :key="elem.id"
+                      :data="elem"
+                    ></elem-rich-text>
+                  </template>
                 </div>
               </div>
               <page-number
+                v-if="page.showPageNo"
                 type="text"
                 :total="pages.length * page.columns.length"
                 :current="pageNo * page.columns.length + columnNo + 1"
@@ -43,7 +53,7 @@
           </div>
         </div>
         <!-- side edit erea -->
-        <div class="page-column-side">
+        <div v-if="page.showSide" class="page-column-side">
           <div class="column-side-body">
             <box-element-preview
               v-for="element in page.sides"
@@ -62,10 +72,16 @@
 import TopicElementPreview from "./TopicElementPreview";
 import BoxElementPreview from "./BoxElementPreview.vue";
 import PageNumber from "./PageNumber";
+import ElemRichText from "../elements/rich-text/ElemRichText.vue";
 
 export default {
   name: "PaperTemplateView",
-  components: { TopicElementPreview, BoxElementPreview, PageNumber },
+  components: {
+    TopicElementPreview,
+    BoxElementPreview,
+    PageNumber,
+    ElemRichText,
+  },
   props: {
     pages: {
       type: Array,

+ 26 - 0
src/modules/paper-export/elements/rich-text/ElemRichText.vue

@@ -0,0 +1,26 @@
+<template>
+  <div class="elem-rich-text" :style="data.styles">
+    <rich-text :text-json="data.content"></rich-text>
+  </div>
+</template>
+
+<script>
+import RichText from "@/components/RichText.vue";
+
+export default {
+  name: "ElemRichText",
+  components: { RichText },
+  props: {
+    data: {
+      type: Object,
+      default() {
+        return {};
+      },
+    },
+  },
+  data() {
+    return {};
+  },
+  methods: {},
+};
+</script>

+ 28 - 0
src/modules/paper-export/elements/rich-text/model.js

@@ -0,0 +1,28 @@
+import {
+  getElementId,
+  randomCode,
+  deepCopy,
+  objAssign,
+} from "../../../card/plugins/utils";
+
+const MODEL = {
+  type: "RICH_TEXT",
+  x: 0,
+  y: 0,
+  w: 200,
+  h: 50,
+  contType: "content",
+  styles: {},
+  content: {
+    sections: [{ blocks: [] }],
+  },
+};
+
+const getModel = (presetData) => {
+  const model = objAssign(deepCopy(MODEL), presetData);
+  model.id = getElementId();
+  model.key = randomCode();
+  return model;
+};
+
+export { MODEL, getModel };

+ 422 - 3
src/modules/paper-export/views/PaperTemplateBuild.vue

@@ -1,13 +1,432 @@
 <template>
-  <div class="paper-template-build">paper-template-build</div>
+  <div class="paper-template-build card-view paper-page">
+    <paper-template-view
+      ref="PaperTemplateView"
+      class="preview-body"
+      :pages="pages"
+    ></paper-template-view>
+  </div>
 </template>
 
 <script>
+import PaperTemplateView from "../components/PaperTemplateView.vue";
+import { getModel as getRichTextModel } from "../elements/rich-text/model";
+import { getModel as getPageModel } from "../elements/page/model";
+import { getElementId, randomCode, deepCopy } from "../../card/plugins/utils";
+import paperJson from "./data/paper.json";
+import paperTempJson from "./data/paper-temp.json";
+import { calcSum, maxNum } from "@/plugins/utils";
+
+const numberToUpperCase = function (val) {
+  if (val < 1 || val > 26) return;
+
+  return String.fromCharCode(64 + val);
+};
+
+const checkRichTextHasCont = function (data) {
+  if (!data) return false;
+  if (!data.sections || !data.sections.length) return false;
+
+  if (!data.sections[0].blocks || !data.sections[0].blocks.length) return false;
+  return true;
+};
+
 export default {
   name: "PaperTemplateBuild",
+  components: { PaperTemplateView },
   data() {
-    return {};
+    return {
+      paperId: this.$route.params.paperId,
+      pages: [],
+      paperJson: {},
+      paperTempJson: [],
+      maxColumnWidth: 200,
+      maxColumnHeight: 200,
+    };
+  },
+  methods: {
+    async initData() {
+      // todo: get data
+      this.paperJson = paperJson;
+      this.paperTempJson = paperTempJson;
+      this.pages = paperTempJson.papes;
+      this.$nextTick(() => {
+        this.buildData();
+      });
+    },
+    async buildData() {
+      this.maxColumnWidth = document.getElementById("column-0-0").offsetWidth;
+      this.maxColumnHeight = document.getElementById("column-0-0").offsetHeight;
+      this.parseRenderStructList();
+      this.buildPrePages();
+
+      const loadres = await this.waitAllImgLoaded().catch(() => {});
+      if (!loadres) {
+        this.$message.error("图片加载有误!");
+        return;
+      }
+      this.$nextTick(() => {
+        this.buildReleasePages();
+      });
+    },
+    parseRenderStructList() {
+      let renderStructList = [];
+
+      this.paperJson.paperDetails.forEach((detail) => {
+        renderStructList.push(this.parseDetailTitle(detail));
+        if (checkRichTextHasCont(detail.description)) {
+          const descData = this.parseTitleOption(detail.description, "");
+          renderStructList.push(...descData);
+        }
+        detail.paperDetailUnits.forEach((question) => {
+          let questionInfo = question.question;
+          if (questionInfo.subQuestions && questionInfo.subQuestions.length) {
+            const bodys = this.parseTitleOption(question.quesBody, "");
+            renderStructList.push(...bodys);
+
+            const isMatches = this.checkIsMatches(question.questionType);
+            if (
+              isMatches &&
+              questionInfo.quesOptions &&
+              questionInfo.quesOptions.length
+            ) {
+              question.quesOptions.forEach((op) => {
+                const obodys = this.parseTitleOption(
+                  op.body,
+                  `${numberToUpperCase(op.number)}、`,
+                  "option"
+                );
+                renderStructList.push(...obodys);
+              });
+            }
+
+            questionInfo.subQuestions.forEach((sq) => {
+              if (isMatches) sq.quesOptions = [];
+              const contents = this.parseSimpleQuestion(sq, false);
+              renderStructList.push(...contents);
+              if (!isMatches) renderStructList.push(this.parseLineGap());
+            });
+          } else {
+            questionInfo.number = question.number;
+            const datas = this.parseSimpleQuestion(questionInfo, true);
+            renderStructList.push(...datas);
+            renderStructList.push(this.parseLineGap());
+          }
+        });
+      });
+
+      this.renderStructList = renderStructList;
+      // console.log(renderStructList);
+    },
+    getRichStruct(blocks) {
+      return {
+        sections: [
+          {
+            blocks: [...blocks],
+          },
+        ],
+      };
+    },
+    transformRichJson(richJson) {
+      if (!richJson || !richJson.sections) return [];
+      let contents = [];
+      let curBlock = [];
+      const checkNeedSplitSection = (block) => {
+        if (block.type !== "image") return false;
+
+        if (block.param) {
+          if (block.param.width)
+            return block.param.width > this.maxColumnWidth / 2;
+          if (block.param.height) return block.param.height > 150;
+        }
+        return true;
+      };
+
+      richJson.sections.forEach((section) => {
+        section.blocks.forEach((block) => {
+          if (checkNeedSplitSection(block) && curBlock.length) {
+            contents.push(this.getRichStruct(curBlock));
+            curBlock = [];
+          }
+          curBlock.push(block);
+        });
+
+        if (curBlock.length) {
+          contents.push(this.getRichStruct(curBlock));
+          curBlock = [];
+        }
+      });
+      return contents;
+    },
+    parseSimpleQuestion(question, isCommon) {
+      let contents = [];
+
+      const tbodys = this.parseTitleOption(
+        question.body,
+        isCommon ? `${question.number}、` : `${question.subNumber})`
+      );
+      contents.push(...tbodys);
+
+      if (question.quesOptions && question.quesOptions.length) {
+        question.quesOptions.forEach((op) => {
+          const obodys = this.parseTitleOption(
+            op.body,
+            `${numberToUpperCase(op.number)}、`,
+            "option"
+          );
+          contents.push(...obodys);
+        });
+      }
+      return contents;
+    },
+    parseDetailTitle(data) {
+      let content = this.getRichStruct({
+        type: "text",
+        value: `${data.cnNum}、${data.name}`,
+      });
+      return getRichTextModel({
+        styles: { width: "100%", fontWeight: 600 },
+        content,
+      });
+    },
+    parseTitleOption(richJson, noVal, contType = "content") {
+      if (!richJson) return [];
+      const bodys = this.transformRichJson(richJson);
+
+      return bodys.forEach((body, index) => {
+        if (index === 0 && noVal) {
+          body.sections[0].blocks.unshift({
+            type: "text",
+            value: noVal,
+          });
+        }
+
+        return this.getRichTextModel({
+          contType,
+          styles: { width: "100%" },
+          content: body,
+        });
+      });
+    },
+    parseLineGap() {
+      return this.getRichTextModel({
+        contType: "gap",
+        styles: { width: "100%", height: "20px" },
+        content: this.getRichStruct({ type: "text", value: "" }),
+      });
+    },
+    checkIsMatches(structType) {
+      const matchesTypes = ["BANKED_CLOZE", "PARAGRAPH_MATCHING"];
+      return matchesTypes.includes(structType);
+    },
+    buildPrePages() {
+      let pages = deepCopy(this.paperTempJson);
+      pages[0].columns[0].elements.push(...this.renderStructList);
+      this.pages = pages;
+    },
+
+    buildReleasePages() {
+      this.resetRenderStructSize();
+      this.autoPage();
+    },
+    resetRenderStructSize() {
+      let curOptions = [];
+      this.renderStructList.forEach((elem, eindex) => {
+        const elemDom = document.getElementById(`rich-text-${elem.id}`);
+        elem.w = elemDom.offsetWidth;
+        elem.h = elemDom.offsetHeight;
+
+        if (elem.contType !== "option") return;
+
+        curOptions.push(elem);
+
+        // 全选选项逻辑
+        const nextElem = this.renderStructList[eindex + 1];
+        if (nextElem && nextElem.contType === "option") return;
+
+        curOptions.forEach((optionElem) => {
+          optionElem._percent = this.getSizePercent(
+            optionElem.w,
+            this.maxColumnWidth
+          );
+        });
+
+        const optionCount = curOptions.length;
+        // 奇数选项,全部一行
+        if (optionCount % 2 > 0) {
+          curOptions.forEach((optionElem) => {
+            optionElem._percent = 1;
+            optionElem.styles.width = "100%";
+          });
+          curOptions = [];
+          return;
+        }
+
+        const percents = curOptions.map((item) => item._percent);
+        const maxPercent = maxNum(percents);
+        let aveOptionPercent = 1;
+        if (optionCount % 4 === 0) {
+          aveOptionPercent = this.calcAveOptionPercent(maxPercent);
+        } else {
+          aveOptionPercent = maxPercent > 0.5 ? 1 : 0.5;
+        }
+        curOptions.forEach((optionElem) => {
+          optionElem._percent = aveOptionPercent;
+          optionElem.styles.width = aveOptionPercent * 100 + "%";
+        });
+
+        curOptions = [];
+      });
+    },
+    autoPage() {
+      let pages = [];
+      let curPage = null,
+        curElem = null;
+      let curColumn = null,
+        curColumnNo = 0,
+        curColumnHeight = 0;
+      let curLinePercent = 0;
+
+      const getNextElem = () => {
+        return this.renderStructList.shift();
+      };
+
+      curElem = getNextElem();
+      while (curElem) {
+        if (!curPage) {
+          curPage = this.getNewPageModel(pages.length);
+        }
+
+        if (!curColumn) {
+          curColumn = curPage.columns[curColumnNo++];
+          curColumnHeight = this.calcInitColumnHeight(curColumn);
+        }
+
+        if (
+          curElem.contType !== "option" ||
+          (curElem.contType === "option" && curElem._percent === 1)
+        ) {
+          curLinePercent = 1;
+          if (curElem.h + curColumnHeight > this.maxColumnHeight) {
+            // 当前栏满了
+          } else {
+            // 未满
+            curColumn.push(curElem);
+            curElem = getNextElem();
+          }
+        } else {
+          if (curLinePercent + curElem._percent > 1) {
+            // 放下一行
+            if (curElem.h + curColumnHeight > this.maxColumnHeight) {
+              curLinePercent = 1;
+              // 当前栏满了
+            } else {
+              // 未满
+              curLinePercent = curElem._percent;
+              curColumn.push(curElem);
+              curElem = getNextElem();
+            }
+          } else {
+            // 放当前行
+            curLinePercent += curElem._percent;
+            curColumn.push(curElem);
+            curElem = getNextElem();
+          }
+        }
+      }
+    },
+    getNewPageModel(pageNo) {
+      let pNo = pageNo % 2;
+      const pageTemp = this.paperTempJson.pages[pNo];
+      let newPage = getPageModel({
+        pageSize: pageTemp.pageSize,
+        columnNumber: pageTemp.columnNumber,
+        columnGap: pageTemp.columnGap,
+        showPageNo: pageTemp.showPageNo,
+        showSide: pageTemp.showSide,
+      });
+      newPage.sides = pageTemp.sides.map((elem) => {
+        let nelem = deepCopy(elem);
+        nelem.id = getElementId();
+        nelem.key = randomCode();
+        return nelem;
+      });
+
+      if (pageNo > 1) return newPage;
+
+      newPage.columns.forEach((column, cindex) => {
+        column.elements = pageTemp.columns[cindex].elements.map((elem) => {
+          let nelem = deepCopy(elem);
+          nelem.id = getElementId();
+          nelem.key = randomCode();
+          if (nelem.elements && nelem.elements.length) {
+            nelem.elements.forEach((celem) => {
+              celem.id = getElementId();
+              celem.key = randomCode();
+            });
+          }
+          return nelem;
+        });
+      });
+      return newPage;
+    },
+    calcAveOptionPercent(maxPercent) {
+      if (maxPercent > 0.5) return 1;
+      if (maxPercent > 0.25) return 0.5;
+      return 0.25;
+    },
+    calcInitColumnHeight(column) {
+      return calcSum(column.elements.map((item) => item.h));
+    },
+    getSizePercent(size, fullSize) {
+      const rate = size / fullSize;
+      if (rate <= 0.25) return 0.25;
+      if (rate <= 0.5) return 0.5;
+      return 1;
+    },
+    // img
+    loadImg(url) {
+      return new Promise((resolve, reject) => {
+        const img = new Image();
+        img.onload = function () {
+          resolve(true);
+        };
+        img.onerror = function () {
+          reject();
+        };
+        img.src = url;
+      });
+    },
+    getRichJsonImgUrls(richJson) {
+      let urls = [];
+      if (!richJson) return urls;
+      richJson.sections.forEach((section) => {
+        section.blocks.forEach((elem) => {
+          if (elem.type === "image" && elem.value.startsWith("http")) {
+            urls.push(elem.value);
+          }
+        });
+      });
+      return urls;
+    },
+    async waitAllImgLoaded() {
+      let imgUrls = [];
+      this.renderStructList.forEach((item) => {
+        if (item.contType === "gap") return;
+        imgUrls.push(...this.getRichJsonImgUrls(item.content));
+      });
+
+      console.log(imgUrls);
+
+      if (!imgUrls.length) return Promise.resolve(true);
+      const imgLoads = imgUrls.map((item) => this.loadImg(item));
+      const imgLoadResult = await Promise.all(imgLoads).catch(() => {});
+      if (imgLoadResult && imgLoadResult.length) {
+        return Promise.resolve(true);
+      } else {
+        return Promise.reject();
+      }
+    },
   },
-  methods: {},
 };
 </script>

+ 218 - 0
src/modules/paper-export/views/data/paper-temp.json

@@ -0,0 +1,218 @@
+{
+  "pages": [
+    {
+      "type": "PAGE",
+      "pageSize": "A3",
+      "columnNumber": 2,
+      "columnGap": 20,
+      "showPageNo": true,
+      "showSide": true,
+      "sides": [
+        {
+          "id": "element-as3e4kr8eru0qki8",
+          "key": "r63thvagbn0k3kh8",
+          "type": "TEXT",
+          "x": 18,
+          "y": 7,
+          "w": 63,
+          "h": 192,
+          "sign": "",
+          "fontWeight": 400,
+          "fontFamily": "宋体",
+          "fontSize": "14px",
+          "color": "#000",
+          "mode": "side",
+          "content": [{ "type": "text", "content": "样例内容请注意内容衔接" }],
+          "zindex": 9,
+          "init": false,
+          "_edit": true,
+          "_side": true,
+          "contentStr": "样例内容请注意内容衔接"
+        },
+        {
+          "type": "FILL_FIELD",
+          "x": 0,
+          "y": 497,
+          "w": 40,
+          "h": 489,
+          "sign": "",
+          "fieldCountPerLine": 2,
+          "lineSpacing": 30,
+          "nameIsJustify": false,
+          "fields": "姓名,学号",
+          "mode": "side",
+          "id": "element-1lm51osihtdhnc1o",
+          "key": "o10dn2n8br85kjdo",
+          "zindex": 9,
+          "init": false,
+          "_edit": true,
+          "_side": true
+        },
+        {
+          "type": "GUTTER",
+          "x": 85,
+          "y": 0,
+          "w": 35,
+          "h": 1002,
+          "content": "装订线",
+          "direction": "left",
+          "id": "element-j63lg138d65iaua8",
+          "key": "baklghqog0pnofl3",
+          "zindex": 9,
+          "init": false
+        }
+      ],
+      "columns": [
+        {
+          "id": "column-o4funrkole78hur8",
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": [
+            {
+              "id": "element-2q6h0lcoi8k0uc3g",
+              "key": "hvlqujgt0hvtn4eo",
+              "type": "PANE_BOX",
+              "x": 0,
+              "y": 0,
+              "w": 683,
+              "h": 273,
+              "borderStyle": "none",
+              "elements": [
+                {
+                  "id": "element-ijdkepug1v4e8alg",
+                  "key": "qhtuu8bnhbrjjm7g",
+                  "type": "TEXT",
+                  "x": 246,
+                  "y": 3,
+                  "w": 170,
+                  "h": 30,
+                  "sign": "",
+                  "fontWeight": 400,
+                  "fontFamily": "宋体",
+                  "fontSize": "14px",
+                  "color": "#000",
+                  "mode": "normal",
+                  "content": [
+                    { "type": "text", "content": "2023学年期末考试-数学" }
+                  ],
+                  "container": {
+                    "id": "element-2q6h0lcoi8k0uc3g",
+                    "type": "PANE_BOX"
+                  },
+                  "zindex": 9,
+                  "init": false,
+                  "contentStr": "2023学年期末考试-数学"
+                }
+              ],
+              "isCovered": false,
+              "init": false
+            },
+            {
+              "id": "element-pfd0g4tgbjm4mn38",
+              "key": "cvc3k59o0pq1tfvg",
+              "type": "PANE_BOX",
+              "x": 0,
+              "y": 0,
+              "w": 683,
+              "h": 200,
+              "borderStyle": "none",
+              "elements": [
+                {
+                  "id": "element-hr6lqsdgtpl5r4gk",
+                  "key": "9948sdfg87b3nlio",
+                  "type": "TEXT",
+                  "x": 192,
+                  "y": 160,
+                  "w": 320,
+                  "h": 30,
+                  "sign": "",
+                  "fontWeight": 400,
+                  "fontFamily": "宋体",
+                  "fontSize": "14px",
+                  "color": "#000",
+                  "mode": "normal",
+                  "content": [
+                    {
+                      "type": "text",
+                      "content": "样例内容很长的问题自动卡达克看看风景啊咖啡机"
+                    }
+                  ],
+                  "container": {
+                    "id": "element-pfd0g4tgbjm4mn38",
+                    "type": "PANE_BOX"
+                  },
+                  "zindex": 9,
+                  "init": false,
+                  "contentStr": "样例内容很长的问题自动卡达克看看风景啊咖啡机"
+                }
+              ],
+              "isCovered": false,
+              "init": false
+            }
+          ]
+        },
+        {
+          "id": "column-msg772k5uap0253o",
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": []
+        }
+      ],
+      "id": "element-4fo8hdl8a4rcere1"
+    },
+    {
+      "type": "PAGE",
+      "pageSize": "A3",
+      "columnNumber": 2,
+      "columnGap": 20,
+      "showPageNo": true,
+      "showSide": true,
+      "sides": [
+        {
+          "type": "GUTTER",
+          "x": 0,
+          "y": 0,
+          "w": 34,
+          "h": 1002,
+          "content": "装订线",
+          "direction": "left",
+          "id": "element-hkvqv2fbkk88nato",
+          "key": "b6107ianogg9qqmo",
+          "zindex": 9,
+          "init": false
+        }
+      ],
+      "columns": [
+        {
+          "id": "column-89ihnbt8q4e4chkg",
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": []
+        },
+        {
+          "id": "column-tlfhl6d8ilhdsee6",
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": []
+        }
+      ],
+      "id": "element-q14jm8gljpitt4mg"
+    }
+  ]
+}

+ 12766 - 0
src/modules/paper-export/views/data/paper.json

@@ -0,0 +1,12766 @@
+{
+  "rootOrgName": "启明大学",
+  "id": 67,
+  "name": "机考全题型试卷-0908",
+  "title": null,
+  "subTitle": null,
+  "totalScore": 159.0,
+  "paperType": "IMPORT",
+  "course": {
+    "id": 28,
+    "code": "T022102",
+    "name": "机考全题型演示",
+    "orgId": null,
+    "level": "ALL",
+    "createTime": null,
+    "updateTime": null,
+    "enable": null
+  },
+  "paperDetails": [
+    {
+      "id": 321,
+      "number": 1,
+      "cnNum": "一",
+      "name": "单项选择题",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              { "type": "text", "value": "共5小题,每一小题1分,共5分" }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 5.0,
+      "unitCount": 5,
+      "paperDetailUnits": [
+        {
+          "id": 1744,
+          "mainNumber": 1,
+          "number": 1,
+          "score": 1.0,
+          "questionType": "SINGLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 967,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "【 】认为,理性世界是第一性的,感性世界是第二性的,而艺术世界市第三性的。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305917265935470732,
+            "quesAnswer": "[4]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "黑格尔" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "苏格拉底" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "康德" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "柏拉图" }] }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "SINGLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "单选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(36)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1745,
+          "mainNumber": 1,
+          "number": 2,
+          "score": 1.0,
+          "questionType": "SINGLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:33:09",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 968,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "一定时代艺术的发展,从最终原因上讲总是在一定的【 】上形成的。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305846411440161153,
+            "quesAnswer": "[1]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "经济基础" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "上层建筑" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "哲学原理" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "道德准则" }] }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "SINGLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 100.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "单选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "100.0%" }
+            ],
+            "bodyLengthText": "题干词数(30)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1746,
+          "mainNumber": 1,
+          "number": 3,
+          "score": 1.0,
+          "questionType": "SINGLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 969,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "“表面上是一幅画,其实是他思想和人格的表现。”鲁迅先生指的是意大利文艺复兴时期画家达·芬奇的作品【 】。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2449961499008304263,
+            "quesAnswer": "[2]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "《父亲》" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "《蒙娜丽莎》" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "《米斯·凡德·罗》" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "《巴尔扎克像》" }]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "SINGLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "单选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(51)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1747,
+          "mainNumber": 1,
+          "number": 4,
+          "score": 1.0,
+          "questionType": "SINGLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:33:09",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 970,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "《桨声灯影里的秦淮河》作者是【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2235675336869,
+            "quesAnswer": "[4]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "徐志摩" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "罗丹" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "周树人" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "朱自清" }] }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "SINGLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 100.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "单选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "100.0%" }
+            ],
+            "bodyLengthText": "题干词数(16)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1748,
+          "mainNumber": 1,
+          "number": 5,
+          "score": 1.0,
+          "questionType": "SINGLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 971,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "电影艺术诞生的时间是【 】" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305987766804181124,
+            "quesAnswer": "[2]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "1958年12月28日" }]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "1895年12月28日" }]
+                    }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "1949年10月1日" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "1905年12月28日" }]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "SINGLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "单选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(12)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 322,
+      "number": 2,
+      "cnNum": "二",
+      "name": "多项选择题",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              {
+                "type": "text",
+                "value": "共5题,每一小题1分,共5分,五个选项中至少有2个选项符合题目要求,答错或少选不给分。"
+              }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 5.0,
+      "unitCount": 5,
+      "paperDetailUnits": [
+        {
+          "id": 1749,
+          "mainNumber": 2,
+          "number": 1,
+          "score": 1.0,
+          "questionType": "MULTIPLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 972,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "艺术起源的几种主要观点分别是【 】。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2310635785442215015,
+            "quesAnswer": "[1,2,3,4]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "“模仿说”" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "“游戏说”" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "“表现说”" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "“巫术说”" }] }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "MULTIPLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "多选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(17)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1750,
+          "mainNumber": 2,
+          "number": 2,
+          "score": 1.0,
+          "questionType": "MULTIPLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 973,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "艺术的社会功能包含【 】。" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2666284570321769698,
+            "quesAnswer": "[1,2,3]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "审美认知" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "审美教育" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "审美娱乐" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "审美游戏" }] }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "MULTIPLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "多选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(12)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1751,
+          "mainNumber": 2,
+          "number": 3,
+          "score": 1.0,
+          "questionType": "MULTIPLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 974,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "以艺术形象的审美方式为依据,将艺术分为【 】。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2853816374695,
+            "quesAnswer": "[1,2,4]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "听觉艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "视觉艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "表演艺术" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "视听艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "MULTIPLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "多选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(22)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1752,
+          "mainNumber": 2,
+          "number": 4,
+          "score": 1.0,
+          "questionType": "MULTIPLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 975,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "实用艺术的审美特征包括【 】。" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2377904528856068641,
+            "quesAnswer": "[1,2,4]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "实用性与审美性" }]
+                    }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "表现性与形式美" }]
+                    }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "个性与共性" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "民族性与时代性" }]
+                    }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "MULTIPLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "多选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(14)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1753,
+          "mainNumber": 2,
+          "number": 5,
+          "score": 1.0,
+          "questionType": "MULTIPLE_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 976,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [{ "type": "text", "value": "造型艺术分为【 】。" }]
+                }
+              ]
+            },
+            "quesBodyHash": 2484902437666954,
+            "quesAnswer": "[1,2,3,5]",
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "绘画艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "雕塑艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "摄影艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "化妆艺术" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 5,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "书法艺术" }] }
+                  ]
+                },
+                "isCorrect": 1
+              }
+            ],
+            "questionType": "MULTIPLE_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "多选" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(9)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 323,
+      "number": 3,
+      "cnNum": "三",
+      "name": "判断题",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              {
+                "type": "text",
+                "value": "本大题共5小题,每小题1分,共5分,判断下列各题正误,正确的在题后括号内打“√”,错误的打“×”,并在下方写上正确答案。"
+              }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 5.0,
+      "unitCount": 5,
+      "paperDetailUnits": [
+        {
+          "id": 1754,
+          "mainNumber": 3,
+          "number": 1,
+          "score": 1.0,
+          "questionType": "BOOL_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 977,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "《韩熙载夜宴图》为五代南唐画家李煜的作品。【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2219225272405,
+            "quesAnswer": "false",
+            "quesOptions": null,
+            "questionType": "BOOL_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "判断" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(23)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1755,
+          "mainNumber": 3,
+          "number": 2,
+          "score": 1.0,
+          "questionType": "BOOL_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 978,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "北宋著名画家张择端创作了巨型长卷风俗画《清明上河图》。【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 38671453133768,
+            "quesAnswer": "true",
+            "quesOptions": null,
+            "questionType": "BOOL_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "判断" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(29)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1756,
+          "mainNumber": 3,
+          "number": 3,
+          "score": 1.0,
+          "questionType": "BOOL_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 979,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "剧场性是戏剧艺术的特征,人们常把剧本、演员、观众称作戏剧艺术的三要素。【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305847174619886985,
+            "quesAnswer": "true",
+            "quesOptions": null,
+            "questionType": "BOOL_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "判断" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(37)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1757,
+          "mainNumber": 3,
+          "number": 4,
+          "score": 1.0,
+          "questionType": "BOOL_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 980,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "戏曲是中国传统的戏剧形式的总称。【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2882311492819865729,
+            "quesAnswer": "true",
+            "quesOptions": null,
+            "questionType": "BOOL_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "判断" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(18)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1758,
+          "mainNumber": 3,
+          "number": 5,
+          "score": 1.0,
+          "questionType": "BOOL_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 981,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "沈阳故宫是我国现存最大、最完整的宫殿式古建筑群,坐落在城市的中轴线上。【 】"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305987598699339781,
+            "quesAnswer": "false",
+            "quesOptions": null,
+            "questionType": "BOOL_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "判断" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(37)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 324,
+      "number": 4,
+      "cnNum": "四",
+      "name": "填空题",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              { "type": "text", "value": "共5小题,每一小题1分,共5分" }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 5.0,
+      "unitCount": 5,
+      "paperDetailUnits": [
+        {
+          "id": 1759,
+          "mainNumber": 4,
+          "number": 1,
+          "score": 1.0,
+          "questionType": "FILL_BLANK_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 982,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "应用离心沉降进行物质的分析和分离的技术称为"
+                    },
+                    { "type": "cloze", "value": 1 }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2396480740423398021,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"电纺丝技术\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "FILL_BLANK_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "填空" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(21)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1760,
+          "mainNumber": 4,
+          "number": 2,
+          "score": 1.0,
+          "questionType": "FILL_BLANK_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 983,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "适于观察培养瓶中活细胞的显微镜是"
+                    },
+                    { "type": "cloze", "value": 1 }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 3299550315914,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"倒置显微镜\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "FILL_BLANK_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "填空" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(16)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1761,
+          "mainNumber": 4,
+          "number": 3,
+          "score": 1.0,
+          "questionType": "FILL_BLANK_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 984,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "现代信息产业的三大支柱指" },
+                    { "type": "cloze", "value": 1 },
+                    { "type": "text", "value": "、" },
+                    { "type": "cloze", "value": 2 },
+                    { "type": "text", "value": "、" },
+                    { "type": "cloze", "value": 3 }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 3204935713174,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"传感器技术\"}]}]},{\"index\":2,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"通信技术\"}]}]},{\"index\":3,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"计算机技术\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "FILL_BLANK_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "填空" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(14)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1762,
+          "mainNumber": 4,
+          "number": 4,
+          "score": 1.0,
+          "questionType": "FILL_BLANK_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:33:09",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 985,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "一定时代艺术的发展,从最终原因上讲总是在一定的"
+                    },
+                    { "type": "cloze", "value": 1 },
+                    { "type": "text", "value": "上形成的。" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2305846411440161153,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"经济基础\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "FILL_BLANK_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 100.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "填空" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "100.0%" }
+            ],
+            "bodyLengthText": "题干词数(28)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1763,
+          "mainNumber": 4,
+          "number": 5,
+          "score": 1.0,
+          "questionType": "FILL_BLANK_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:33:09",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 986,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "《桨声灯影里的秦淮河》作者是" },
+                    { "type": "cloze", "value": 1 }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2235675336869,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"朱自清\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "FILL_BLANK_QUESTION",
+            "subQuestions": null,
+            "score": 1.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 100.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "填空" },
+              { "tag": "分值", "content": "1.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "100.0%" }
+            ],
+            "bodyLengthText": "题干词数(14)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 325,
+      "number": 5,
+      "cnNum": "五",
+      "name": "简答题",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              { "type": "text", "value": "共5小题,每一小题7分,共35分" }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 35.0,
+      "unitCount": 5,
+      "paperDetailUnits": [
+        {
+          "id": 1764,
+          "mainNumber": 5,
+          "number": 1,
+          "score": 7.0,
+          "questionType": "TEXT_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 987,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "简述“艺术的主要特征”是什么?" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2908483001013843238,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"形象性、主体性、审美性。艺术形象是客观与主观、内容与形式、个性与共性的统一。艺术创作、艺术作品与艺术鉴赏均具有主体性的特点。艺术的审美性是人类审美意识的集中体现,是真、善、美的结晶,艺术的审美性体现为内容美和形式美的统一。\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "TEXT_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 7.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "问答" },
+              { "tag": "分值", "content": "7.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(15)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1765,
+          "mainNumber": 5,
+          "number": 2,
+          "score": 7.0,
+          "questionType": "TEXT_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 988,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "关于艺术起源的五种观点是什么?"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2311902560336094261,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"关于艺术的起源有多种说法,其中影响较大的主要是“模仿说”、“游戏说”、“表现说”、“巫术说”、“生产劳动说”等五种,每种说法都有一定的道理,但又都不够全面。因此,我们主张第6种说法,即“多元决定论”。\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "TEXT_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 7.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "问答" },
+              { "tag": "分值", "content": "7.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(15)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1766,
+          "mainNumber": 5,
+          "number": 3,
+          "score": 7.0,
+          "questionType": "TEXT_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 989,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "简述戏剧艺术的概念和特征。" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2882308044169950593,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"从广义上讲,戏剧包括话剧、中国戏曲、歌剧、舞剧、乃至目前欧美各国影响广泛的音乐剧等。从狭义上讲,戏剧主要是指话剧。这里所讲的戏剧即指话剧,是从狭义理解的。话剧在欧美各国通常被称为戏剧。戏剧是在舞台上由演员以对话和动作为主要表现手段,为观众当场表演故事情节的一门综合艺术。\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "TEXT_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 7.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "问答" },
+              { "tag": "分值", "content": "7.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(13)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1767,
+          "mainNumber": 5,
+          "number": 4,
+          "score": 7.0,
+          "questionType": "TEXT_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-10-21 10:17:48",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 990,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    { "type": "text", "value": "简述什么是“蒙太奇”。" }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2308167813413732386,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"音译词,原为建筑学用语,意为装配、组合、构成等,在影视艺术中,这一术语被用来指画面、镜头和声音的组织结构方式。\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "TEXT_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 7.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": "DIVERSIFIED_TEXT",
+            "quesProperties": [
+              {
+                "id": 211,
+                "key": "9-57-60",
+                "subNumber": 0,
+                "courseProperty": {
+                  "updateTime": null,
+                  "creationTime": null,
+                  "id": 9,
+                  "creationBy": null,
+                  "updateBy": null,
+                  "rootOrgId": 7,
+                  "courseId": 28,
+                  "name": "章节目录",
+                  "enable": true
+                },
+                "firstProperty": {
+                  "updateTime": null,
+                  "creationTime": null,
+                  "id": 57,
+                  "creationBy": null,
+                  "updateBy": null,
+                  "rootOrgId": null,
+                  "coursePropertyId": null,
+                  "parentId": null,
+                  "name": "第一章 函数与极限",
+                  "code": "A1",
+                  "number": null,
+                  "remark": null
+                },
+                "secondProperty": {
+                  "updateTime": null,
+                  "creationTime": null,
+                  "id": 60,
+                  "creationBy": null,
+                  "updateBy": null,
+                  "rootOrgId": null,
+                  "coursePropertyId": null,
+                  "parentId": null,
+                  "name": "第三节 函数的极限",
+                  "code": "A1-3",
+                  "number": null,
+                  "remark": null
+                }
+              }
+            ],
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "问答" },
+              { "tag": "分值", "content": "7.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(11)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        },
+        {
+          "id": 1768,
+          "mainNumber": 5,
+          "number": 5,
+          "score": 7.0,
+          "questionType": "TEXT_ANSWER_QUESTION",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 991,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "请简要阐释实用艺术的主要审美特征。"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 2308384990196814690,
+            "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"形象性、主体性、审美性。艺术形象是客观与主观、内容与形式、个性与共性的统一。艺术创作、艺术作品与艺术鉴赏均具有主体性的特点。艺术的审美性是人类审美意识的集中体现,是真、善、美的结晶,艺术的审美性体现为内容美和形式美的统一。\"}]}]}]",
+            "quesOptions": null,
+            "questionType": "TEXT_ANSWER_QUESTION",
+            "subQuestions": null,
+            "score": 7.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "基础题型" },
+              { "tag": "题型小类", "content": "问答" },
+              { "tag": "分值", "content": "7.0" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(17)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": null,
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 326,
+      "number": 6,
+      "cnNum": "六",
+      "name": "综合题",
+      "description": { "sections": [] },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 20.0,
+      "unitCount": 10,
+      "paperDetailUnits": [
+        {
+          "id": 1769,
+          "mainNumber": 6,
+          "number": 1,
+          "score": 20.0,
+          "questionType": "READING_COMPREHENSION",
+          "question": {
+            "updateTime": "2022-10-21 10:16:18",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 992,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "California has been facing a drought for many years now, with certain areas even having to pump freshwater hundreds of miles to their distribution system. The problem is growing as the population of the state continues to expand. New research has found deep water reserves under the state which could help solve their drought crisis. Previous drilling of wells could only reach depths of 1,000 feet, but due to new pumping practices, water deeper than this can now be extracted (抽取). The team at Stanford investigated the aquifers (地下蓄水层) below this depth and found that reserves may be triple what was previously thought."
+                    }
+                  ]
+                },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "It is profitable to drill to depths more than 1,000 feet for oil and gas extraction, but only recently in California has it become profitable to pump water from this depth. The aquifers range from 1,000 to 3,000 feet below the ground, which means that pumping will be expensive and there are other concerns. The biggest concern of pumping out water from this deep is the gradual settling down of the land surface. As the water is pumped out, the vacant space left is compacted by the weight of the earth above."
+                    }
+                  ]
+                },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "Even though pumping from these depths is expensive, it is still cheaper than desalinating (脱 盐) the ocean water in the largely coastal state. Some desalination plants exist where feasible, but they are costly to run and can need constant repairs. Wells are much more reliable sources of freshwater, and California is hoping that these deep wells may be the answer to their severe water shortage."
+                    }
+                  ]
+                },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "One problem with these sources is that the deep water also has a higher level of salt than shallower aquifers. This means that some wells may even need to undergo desalination after extraction, thus increasing the cost. Research from the exhaustive study of groundwater from over 950 drilling logs has just been published. New estimates of the water reserves now go up to 2,700 billion cubic meters of freshwater."
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 13435369116182520,
+            "quesAnswer": null,
+            "quesOptions": null,
+            "questionType": "READING_COMPREHENSION",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "How could California’s drought crisis be solved according to some researchers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By building more reserves of groundwater."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By drawing water from the depths of the earth."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By developing more advanced drilling devices."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By upgrading its water distribution system."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": "DIVERSIFIED_TEXT",
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "What can be inferred about extracting water from deep aquifers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It was deemed vital to solving the water problem."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It was not considered worth the expense."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It may not provide quality freshwater."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It is bound to gain support from the local people."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": "DIVERSIFIED_TEXT",
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "How could California’s drought crisis be solved according to some researchers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1,2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By building more reserves of groundwater."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By drawing water from the depths of the earth."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By developing more advanced drilling devices."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "By upgrading its water distribution system."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "MULTIPLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 3,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "多选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "What can be inferred about extracting water from deep aquifers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2,3,4]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It was deemed vital to solving the water problem."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It was not considered worth the expense."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It may not provide quality freshwater."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "It is bound to gain support from the local people."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  }
+                ],
+                "questionType": "MULTIPLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 4,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "多选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "How could California’s drought crisis be solved according to some researchers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "true",
+                "quesOptions": null,
+                "questionType": "BOOL_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 5,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "判断" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "What can be inferred about extracting water from deep aquifers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "true",
+                "quesOptions": null,
+                "questionType": "BOOL_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 6,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "判断" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "How could California’s drought crisis"
+                        },
+                        { "type": "cloze", "value": 1 },
+                        {
+                          "type": "text",
+                          "value": "solved according to some researchers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"be\"}]}]}]",
+                "quesOptions": null,
+                "questionType": "FILL_BLANK_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 7,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "填空" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "What can be inferred" },
+                        { "type": "cloze", "value": 1 },
+                        {
+                          "type": "text",
+                          "value": "extracting water from deep aquifers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"about\"}]}]}]",
+                "quesOptions": null,
+                "questionType": "FILL_BLANK_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 8,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "填空" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "How could California’s drought crisis be solved according to some researchers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"A\"}]}]}]",
+                "quesOptions": null,
+                "questionType": "TEXT_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 9,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "问答" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "What can be inferred about extracting water from deep aquifers?"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[{\"index\":1,\"sections\":[{\"blocks\":[{\"type\":\"text\",\"value\":\"B\"}]}]}]",
+                "quesOptions": null,
+                "questionType": "TEXT_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 10,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "问答" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 20.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "组合题型" },
+              { "tag": "题型小类", "content": "阅读理解" },
+              { "tag": "分值", "content": "20.0" },
+              { "tag": "子题数量", "content": "10" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(1614)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 327,
+      "number": 7,
+      "cnNum": "七",
+      "name": "选词填空",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              {
+                "type": "text",
+                "value": "Directions In this section, there are two paragraphs with blanks. Complete the blanks by using the words or collocations given to you. Each word or collocation is identified by a letter. Each letter shall only be choosen for once. Write your answers in the corresponding space on your ANSWER SHEET."
+              }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 40.0,
+      "unitCount": 20,
+      "paperDetailUnits": [
+        {
+          "id": 1770,
+          "mainNumber": 7,
+          "number": 1,
+          "score": 20.0,
+          "questionType": "BANKED_CLOZE",
+          "question": {
+            "updateTime": "2022-10-21 10:30:55",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 993,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                { "blocks": [{ "type": "text", "value": "Paragraph 1" }] },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "The federal district courts have jurisdiction over Cases that raise a"
+                    },
+                    { "type": "cloze", "value": 1 },
+                    {
+                      "type": "text",
+                      "value": "involving the U.S. Government, the U.S. Constitution, or other"
+                    },
+                    { "type": "cloze", "value": 2 },
+                    {
+                      "type": "text",
+                      "value": "; and Cases involving “diversity of citizenship,” which are disputes between two"
+                    },
+                    { "type": "cloze", "value": 3 },
+                    {
+                      "type": "text",
+                      "value": "not from the same state or country and where the claim meets a set dollar threshold for damages. Specifically speaking, It is possible to file a"
+                    },
+                    { "type": "cloze", "value": 4 },
+                    { "type": "text", "value": "in a" },
+                    { "type": "cloze", "value": 5 },
+                    {
+                      "type": "text",
+                      "value": "when the plaintiff and defendant are from different states and countries. Diversity of citizenship jurisdiction exists when a plaintiff is a citizen of one state and the defendant is a citizen of another state, or when one party is a foreign country, or when one party is a citizen of a"
+                    },
+                    { "type": "cloze", "value": 6 },
+                    {
+                      "type": "text",
+                      "value": "and the other is a citizen of the"
+                    },
+                    { "type": "cloze", "value": 7 },
+                    {
+                      "type": "text",
+                      "value": ". The amount of claimed damages in a diversity of citizenship case must be more than $75,000. Certain kinds of federal cases are heard not in the federal district courts as the trial courts of"
+                    },
+                    { "type": "cloze", "value": 8 },
+                    {
+                      "type": "text",
+                      "value": ", but rather in specialized trial courts as trial courts of limited. For example, cases involving international trade and customs duties are heard in"
+                    },
+                    { "type": "cloze", "value": 9 },
+                    { "type": "text", "value": ", and" },
+                    { "type": "cloze", "value": 10 },
+                    {
+                      "type": "text",
+                      "value": "hears suits against the federal government for money damages in civil matters."
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 13363613045943714,
+            "quesAnswer": null,
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "suit" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "parties" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "U.S. Court of International Trade"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "federal district court" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 5,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "United States" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 6,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "general jurisdiction" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 7,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "U.S. Claims Court" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 8,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "federal question" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 9,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "foreign country" }]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 10,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "federal laws" }] }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "BANKED_CLOZE",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[8]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": "DIVERSIFIED_TEXT",
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[10]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 3,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 4,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[4]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 5,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[9]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 6,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[5]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 7,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[6]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 8,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[3]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 9,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[7]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 10,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 20.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": { "matchingMode": 1 },
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 90.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "组合题型" },
+              { "tag": "题型小类", "content": "选词填空" },
+              { "tag": "作答限定", "content": "单用" },
+              { "tag": "分值", "content": "20.0" },
+              { "tag": "子题数量", "content": "10" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "90.0%" }
+            ],
+            "bodyLengthText": "题干词数(931)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": {
+            "1": [4],
+            "2": [3],
+            "3": [9],
+            "4": [5],
+            "5": [7],
+            "6": [8],
+            "7": [10],
+            "8": [1],
+            "9": [6],
+            "10": [2]
+          },
+          "publicity": null
+        },
+        {
+          "id": 1771,
+          "mainNumber": 7,
+          "number": 2,
+          "score": 20.0,
+          "questionType": "BANKED_CLOZE",
+          "question": {
+            "updateTime": "2022-09-08 11:33:09",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 994,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                { "blocks": [{ "type": "text", "value": "Paragraph 2" }] },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "The federal district courts have jurisdiction over Cases that raise a"
+                    },
+                    { "type": "cloze", "value": 1 },
+                    {
+                      "type": "text",
+                      "value": "involving the U.S. Government, the U.S. Constitution, or other"
+                    },
+                    { "type": "cloze", "value": 2 },
+                    {
+                      "type": "text",
+                      "value": "; and Cases involving “diversity of citizenship,” which are disputes between two"
+                    },
+                    { "type": "cloze", "value": 3 },
+                    {
+                      "type": "text",
+                      "value": "not from the same state or country and where the claim meets a set dollar threshold for damages. Specifically speaking, It is possible to file a"
+                    },
+                    { "type": "cloze", "value": 4 },
+                    { "type": "text", "value": "in a" },
+                    { "type": "cloze", "value": 5 },
+                    {
+                      "type": "text",
+                      "value": "when the plaintiff and defendant are from different states and countries. Diversity of citizenship jurisdiction exists when a plaintiff is a citizen of one state and the defendant is a citizen of another state, or when one party is a foreign country, or when one party is a citizen of a"
+                    },
+                    { "type": "cloze", "value": 6 },
+                    {
+                      "type": "text",
+                      "value": "and the other is a citizen of the"
+                    },
+                    { "type": "cloze", "value": 7 },
+                    {
+                      "type": "text",
+                      "value": ". The amount of claimed damages in a diversity of citizenship case must be more than $75,000. Certain kinds of federal cases are heard not in the federal district courts as the trial courts of"
+                    },
+                    { "type": "cloze", "value": 8 },
+                    {
+                      "type": "text",
+                      "value": ", but rather in specialized trial courts as trial courts of limited. For example, cases involving international trade and customs duties are heard in"
+                    },
+                    { "type": "cloze", "value": 9 },
+                    { "type": "text", "value": ", and" },
+                    { "type": "cloze", "value": 10 },
+                    {
+                      "type": "text",
+                      "value": "hears suits against the federal government for money damages in civil matters."
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 13363613066915234,
+            "quesAnswer": null,
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "suit" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "parties" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "U.S. Court of International Trade"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "federal district court" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 5,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "United States" }] }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 6,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "general jurisdiction" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 7,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "U.S. Claims Court" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 8,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "federal question" }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 9,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [{ "type": "text", "value": "foreign country" }]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 10,
+                "optionBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "federal laws" }] }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "BANKED_CLOZE",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[8]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[10]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 3,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 4,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[4]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 5,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[9]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 6,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[5]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 7,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[6]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 8,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[3]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 9,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    { "blocks": [{ "type": "text", "value": "( )" }] }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[7]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "suit" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "parties" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "U.S. Court of International Trade"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "federal district court"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "United States" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "general jurisdiction" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "U.S. Claims Court" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal question" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "foreign country" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            { "type": "text", "value": "federal laws" }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 2.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 10,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "2.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 20.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": { "matchingMode": 2 },
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": 90.0,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "组合题型" },
+              { "tag": "题型小类", "content": "选词填空" },
+              { "tag": "作答限定", "content": "复用" },
+              { "tag": "分值", "content": "20.0" },
+              { "tag": "子题数量", "content": "10" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "90.0%" }
+            ],
+            "bodyLengthText": "题干词数(931)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": {
+            "1": [4],
+            "2": [3],
+            "3": [9],
+            "4": [5],
+            "5": [7],
+            "6": [8],
+            "7": [10],
+            "8": [1],
+            "9": [6],
+            "10": [2]
+          },
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 328,
+      "number": 8,
+      "cnNum": "八",
+      "name": "段落匹配",
+      "description": {
+        "sections": [
+          {
+            "blocks": [
+              {
+                "type": "text",
+                "value": "In this section, you are going to read a passage with ten statements attached to it. Each statement contains information given in one of the paragraphs. Identify the paragraph from which the information is derived. You may choose a paragraph more than once. Each paragraph is marked with a letter. Answer the questions by marking the corresponding letter on Answer Sheet 2."
+              }
+            ]
+          }
+        ]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 30.0,
+      "unitCount": 10,
+      "paperDetailUnits": [
+        {
+          "id": 1772,
+          "mainNumber": 8,
+          "number": 1,
+          "score": 30.0,
+          "questionType": "PARAGRAPH_MATCHING",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 995,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "Food-as-Medicine Movement Is Witnessing Progress"
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 1452610940329644219,
+            "quesAnswer": null,
+            "quesOptions": [
+              {
+                "number": 1,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 2,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 3,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 4,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 5,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 6,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 7,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 8,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 9,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 10,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                        }
+                      ]
+                    },
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "inflammatory conditions." }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              },
+              {
+                "number": 11,
+                "optionBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "isCorrect": 0
+              }
+            ],
+            "questionType": "PARAGRAPH_MATCHING",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "More than half of the food Americans eat is factory-produced."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "There is a special program that assignsdoctors to give advice to shoppers in food stores."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "There is growing evidence from research that food helps patients recover from various illnesses."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 3,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "A healthy breakfast can be prepared quickly and easily."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 4,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Training a patient to prepare healthy food can change their life."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 5,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "One food-as-medicine program not only prescribes food for treatment but teaches patients how to cook it."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 6,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Scott is not keen on cooking food herself, thinking it would simply be a waste of time."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 7,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Diabetes patients are advised to eat more plant-based food."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 8,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Using food as medicine is no novel idea, but the movement is making headway these days."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 9,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        {
+                          "type": "text",
+                          "value": "Americans’ high rates of various illnesses result from the way they eat."
+                        }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Several times a month, you can find a doctor in the aisles of Ralph’s market in Huntington Beach, California, wearing a white coat and helping people learn about food. On one recent day, this doctor was Daniel Nadeau, wandering the cereal aisle with Allison Scott, giving her some idea on how to feed kids who persistently avoid anything that is healthy. “Have you thought about trying fresh juices in the morning?” he asks her. “The frozen oranges and apples are a little cheaper, and fruits are really good for the brain. Juices are quick and easy to prepare, you can take the frozen fruit out the night before and have it ready the next morning.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Scott is delighted to get food advice from a physician who is program director of the nearby Mary and Dick Allen Diabetes Center, part of the St. Joseph Hoag Health alliance. The center’s ‘Shop with Your Doc’ program sends doctors to the grocery store to meet with any patients who sign up for the service, plus any other shoppers who happen to be around with questions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau notices the pre-made macaroni (通心粉)-and-cheese boxes in Scott’s shopping cart and suggests she switch to whole grain macaroni and real cheese. “So I’d have to make it?” she asks, her enthusiasm fading at the thought of how long that might take, just to have her kids reject it. “I’m not sure they’d eat it. They just won’t eat it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau says sugar and processed foods are big contributors to the rising diabetes rates among children. “In America, over 50 percent of our food is processed food,” Nadeau tells her. “And only 5 percent of our food is plant-based food. I think we should try to reverse that.” Scott agrees to try more fruit juices for the kids and to make real macaroni and cheese. Score one point for the doctor, zero for diabetes."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 5,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Nadeau is part of a small revolution developing across California. The food-as-medicine movement has been around for decades, but it’s making progress as physicians and medical institutions make food a formal part of treatment, rather than relying solely on medications (药物). By prescribing nutritional changes or launching programs such as ‘Shop with Your Doc’, they are trying to prevent, limit or even reverse disease by changing what patients eat. “There’s no question people can take things a long way toward reversing diabetes, reversing high blood pressure, even preventing cancer by food choices,” Nadeau says."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 6,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In the big picture, says Dr. Richard Afable, CEO and president of St. Joseph Hoag Health, medical institutions across the state are starting to make a philosophical switch to becoming a health organization, not just a health care organization. That feeling echoes the beliefs of the Therapeutic Food Pantry program at Zuckerberg San Francisco General Hospital, which completed its pilot phase and is about to expand on an ongoing basis to five clinic sites throughout the city. The program will offer patients several bags of food prescribed for their condition, along with intensive training in how to cook it. “We really want to link food and medicine, and not just give away food,” says Dr. Rita Nguyen, the hospital’s medical director of Healthy Food Initiatives. “We want people to understand what they’re eating, how to prepare it, the role food plays in their lives.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 7,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "In Southern California, Loma Linda University School of Medicine is offering specialized training for its resident physicians in Lifestyle Medicine — that is a formal specialty in using food to treat disease. Research findings increasingly show the power of food to treat or reverse diseases, but that does not mean that diet alone is always the solution, or that every illness can benefit substantially from dietary changes. Nonetheless, physicians say that they look at the collective data and a clear picture emerges: that the salt, sugar, fat and processed foods in the American diet contribute to the nation’s high rates of obesity, diabetes and heart disease. According to the World Health Organization, 80 percent of deaths from heart disease and stroke are caused by high blood pressure, tobacco use, elevated cholesterol and low consumption of fruits and vegetables."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 8,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“It’s a different paradigm (范式) of how to treat disease,” says Dr. Brenda Rea, who helps run the family and preventive medicine residency program at Loma Linda University School of Medicine. The lifestyle medicine specialty is designed to train doctors in how to prevent and treat disease, in part, by changing patients’ nutritional habits. The medical center and school at Loma Linda also has a food cupboard and kitchen for patients. This way, patients not only learn about which foods to buy, but also how to prepare them at home."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 9,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Many people don’t know how to cook, Rea says, and they only know how to heat things up. That means depending on packaged food with high salt and sugar content. So teaching people about which foods are healthy and how to prepare them, she says, can actually transform a patient’s life. And beyond that, it might transform the health and lives of that patient’s family. “What people eat can be medicine or poison,” Rea says. “As a physician, nutrition is one of the most powerful things you can change to reverse the effects of long-term disease.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 10,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "Studies have explored evidence that dietary changes can slow inflammation (炎症), for example, or make the body inhospitable to cancer cells. In general, many lifestyle medicine physicians recommend a plant-based diet — particularly for people with diabetes or other"
+                            }
+                          ]
+                        },
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "inflammatory conditions."
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 11,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [
+                            {
+                              "type": "text",
+                              "value": "“As what happened with tobacco, this will require a cultural shift, but that can happen,” says Nguyen. “In the same way physicians used to smoke, and then stopped smoking and were able to talk to patients about it, I think physicians can have a bigger voice in it.”"
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 10,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 30.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": { "matchingMode": 2 },
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "组合题型" },
+              { "tag": "题型小类", "content": "段落匹配" },
+              { "tag": "作答限定", "content": "复用" },
+              { "tag": "分值", "content": "30.0" },
+              { "tag": "子题数量", "content": "10" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(44)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": { "1": [1, 3, 5, 7, 9], "2": [2, 4, 6, 8, 10] },
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 329,
+      "number": 9,
+      "cnNum": "九",
+      "name": "听力题",
+      "description": {
+        "sections": [{ "blocks": [{ "type": "text", "value": "" }] }]
+      },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 8.0,
+      "unitCount": 2,
+      "paperDetailUnits": [
+        {
+          "id": 1773,
+          "mainNumber": 9,
+          "number": 1,
+          "score": 8.0,
+          "questionType": "LISTENING_QUESTION",
+          "question": {
+            "updateTime": "2022-12-12 08:56:22",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 996,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "In Britain people usually have a doctor near their home or in their town. This is the local doctor. You have to register with a doctor before you can make an appointment."
+                    }
+                  ]
+                },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "You usually have to fill in a form and the doctor examines you. Families often all register with the same doctor."
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 4624529284912678290,
+            "quesAnswer": null,
+            "quesOptions": null,
+            "questionType": "LISTENING_QUESTION",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "短文中空白处应填?" }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "Hello" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "World" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [{ "type": "text", "value": "HelloWorld" }]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "不填" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 4.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "4.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "HelloWorld共几个字母?" }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "1" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "11" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "10" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "111" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 4.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "4.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 8.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": false,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": "DIVERSIFIED_TEXT",
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "特殊题型" },
+              { "tag": "题型小类", "content": "听力" },
+              { "tag": "分值", "content": "8.0" },
+              { "tag": "子题数量", "content": "2" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(232)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [4.0, 4.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": false,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    },
+    {
+      "id": 330,
+      "number": 10,
+      "cnNum": "十",
+      "name": "完形填空",
+      "description": { "sections": [] },
+      "title": null,
+      "titleDetail": null,
+      "descriptionWord": null,
+      "score": 6.0,
+      "unitCount": 2,
+      "paperDetailUnits": [
+        {
+          "id": 1774,
+          "mainNumber": 10,
+          "number": 1,
+          "score": 6.0,
+          "questionType": "CLOZE",
+          "question": {
+            "updateTime": "2022-09-08 11:32:58",
+            "creationTime": "2022-09-08 11:32:58",
+            "id": 997,
+            "creationBy": 7,
+            "updateBy": 7,
+            "qe": null,
+            "quesBodyHtml": null,
+            "quesBody": {
+              "sections": [
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "In Britain people usually have a doctor"
+                    },
+                    { "type": "cloze", "value": 1 },
+                    {
+                      "type": "text",
+                      "value": "near their home or in their town. This is the local doctor. You have to register with a doctor"
+                    },
+                    { "type": "cloze", "value": 2 },
+                    {
+                      "type": "text",
+                      "value": "before you can make an appointment."
+                    }
+                  ]
+                },
+                {
+                  "blocks": [
+                    {
+                      "type": "text",
+                      "value": "You usually have to fill in a form and the doctor examines you. Families often all register with the same doctor."
+                    }
+                  ]
+                }
+              ]
+            },
+            "quesBodyHash": 4624547839170348418,
+            "quesAnswer": null,
+            "quesOptions": null,
+            "questionType": "CLOZE",
+            "subQuestions": [
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "短文中空白_1_处应填?" }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[1]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "Hello" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "World" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [{ "type": "text", "value": "HelloWorld" }]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "不填" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 1,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              },
+              {
+                "updateTime": null,
+                "creationTime": null,
+                "id": null,
+                "creationBy": null,
+                "updateBy": null,
+                "qe": null,
+                "quesBodyHtml": null,
+                "quesBody": {
+                  "sections": [
+                    {
+                      "blocks": [
+                        { "type": "text", "value": "短文中空白_2_处应填?" }
+                      ]
+                    }
+                  ]
+                },
+                "quesBodyHash": null,
+                "quesAnswer": "[2]",
+                "quesOptions": [
+                  {
+                    "number": 1,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "Hello" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 2,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "World" }] }
+                      ]
+                    },
+                    "isCorrect": 1
+                  },
+                  {
+                    "number": 3,
+                    "optionBody": {
+                      "sections": [
+                        {
+                          "blocks": [{ "type": "text", "value": "HelloWorld" }]
+                        }
+                      ]
+                    },
+                    "isCorrect": 0
+                  },
+                  {
+                    "number": 4,
+                    "optionBody": {
+                      "sections": [
+                        { "blocks": [{ "type": "text", "value": "不填" }] }
+                      ]
+                    },
+                    "isCorrect": 0
+                  }
+                ],
+                "questionType": "SINGLE_ANSWER_QUESTION",
+                "subQuestions": null,
+                "score": 3.0,
+                "course": {
+                  "id": null,
+                  "code": null,
+                  "name": null,
+                  "orgId": null,
+                  "level": null,
+                  "createTime": null,
+                  "updateTime": null,
+                  "enable": null
+                },
+                "orgId": null,
+                "quesParam": {},
+                "control": {},
+                "hasAudio": null,
+                "questionAudios": null,
+                "quesName": null,
+                "subNumber": 2,
+                "answerType": null,
+                "quesProperties": null,
+                "difficultyDegree": 0.5,
+                "propertyInfo": null,
+                "publicity": true,
+                "difficulty": "中",
+                "calculateDifficultyDegree": null,
+                "propertyGroup": null,
+                "audioList": null,
+                "std": null,
+                "cv": null,
+                "reliability": null,
+                "exposureTimes": null,
+                "maxRepetition": null,
+                "questionSeq": null,
+                "tags": [
+                  { "tag": "标准差", "content": "-" },
+                  { "tag": "难度", "content": "中" },
+                  { "tag": "差异系数", "content": "-" },
+                  { "tag": "信度", "content": "-" },
+                  { "tag": "题型大类", "content": "基础题型" },
+                  { "tag": "题型小类", "content": "单选" },
+                  { "tag": "分值", "content": "3.0" }
+                ],
+                "bodyLengthText": null,
+                "checkDuplicateStatus": null,
+                "basePaperId": null,
+                "creator": null,
+                "basePaperName": null,
+                "quesMainType": null,
+                "calculateAvgScore": null,
+                "discrimination": null,
+                "duplicateRate": null,
+                "auditStatus": null,
+                "quesBodyWord": null,
+                "quesAnswerWord": null,
+                "quesOptionsWord": null
+              }
+            ],
+            "score": 6.0,
+            "course": {
+              "id": 28,
+              "code": null,
+              "name": null,
+              "orgId": null,
+              "level": null,
+              "createTime": null,
+              "updateTime": null,
+              "enable": null
+            },
+            "orgId": 7,
+            "quesParam": {},
+            "control": {},
+            "hasAudio": null,
+            "questionAudios": null,
+            "quesName": null,
+            "subNumber": null,
+            "answerType": null,
+            "quesProperties": null,
+            "difficultyDegree": 0.5,
+            "propertyInfo": null,
+            "publicity": true,
+            "difficulty": "中",
+            "calculateDifficultyDegree": null,
+            "propertyGroup": null,
+            "audioList": null,
+            "std": null,
+            "cv": null,
+            "reliability": null,
+            "exposureTimes": null,
+            "maxRepetition": null,
+            "questionSeq": null,
+            "tags": [
+              { "tag": "标准差", "content": "-" },
+              { "tag": "难度", "content": "中" },
+              { "tag": "差异系数", "content": "-" },
+              { "tag": "信度", "content": "-" },
+              { "tag": "题型大类", "content": "组合题型" },
+              { "tag": "题型小类", "content": "完形填空" },
+              { "tag": "分值", "content": "6.0" },
+              { "tag": "子题数量", "content": "2" },
+              { "tag": "曝光次数", "content": "-" },
+              { "tag": "最高重复率", "content": "-" }
+            ],
+            "bodyLengthText": "题干词数(232)",
+            "checkDuplicateStatus": "DISPOSED",
+            "basePaperId": 67,
+            "creator": null,
+            "basePaperName": null,
+            "quesMainType": null,
+            "calculateAvgScore": null,
+            "discrimination": null,
+            "duplicateRate": null,
+            "auditStatus": "PASS",
+            "quesBodyWord": null,
+            "quesAnswerWord": null,
+            "quesOptionsWord": null
+          },
+          "quesId": null,
+          "subScoreList": [3.0, 3.0],
+          "optionOrder": null,
+          "firstName": null,
+          "firstCode": null,
+          "secondName": null,
+          "secondCode": null,
+          "optionsSelected": null,
+          "publicity": null
+        }
+      ],
+      "hasAudio": null,
+      "questionTypes": null,
+      "nested": false,
+      "resetSubQuesSeq": null,
+      "sortNumber": null,
+      "firstScore": null,
+      "quesType": null,
+      "std": null,
+      "cv": null,
+      "reliability": null,
+      "difficultyDegree": null,
+      "tags": [
+        { "tag": "标准差", "content": "-" },
+        { "tag": "难度", "content": "-" },
+        { "tag": "差异系数", "content": "-" },
+        { "tag": "信度", "content": "-" }
+      ]
+    }
+  ],
+  "params": null,
+  "objectiveDetails": null,
+  "subjectiveDetails": null,
+  "objectiveTitle": null,
+  "subjectiveTitle": null,
+  "objectiveScore": null,
+  "subjectiveScore": null,
+  "hasAudio": null,
+  "difficultyDegree": 0.5,
+  "examRemark": null,
+  "examRemarkWord": null,
+  "std": null,
+  "cv": null,
+  "reliability": null,
+  "exposureRate": null,
+  "lastAuditTime": null,
+  "auditStatus": "PASS",
+  "checkDuplicateStatus": "DISPOSED",
+  "creationBy": 7
+}