123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace HTEXLib.DOCX.Models
- {
- public class ItemInfo : BaseItem
- {
- public ItemInfo() {
- answer = new List<string>();
- knowledge = new List<string>();
- gradeIds = new List<string>();
- repair = new List<Repair>();
- children = new List<ItemInfo>();
- option = new List<CodeValue>();
- }
- public List<ItemInfo> children { get; set; }
- public string question { get; set; }
- // 选项 单选 多选 判断
- public List<CodeValue> option { get; set; }
- }
- }
|