1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- using TEAMModelOS.Model.Core.Dtos;
- namespace TEAMModelOS.Model.Evaluation.Dtos.Own
- {
-
- public class ItemBankDto
- {
- public ItemBankDto()
- {
- Option = new List<CodeValue>();
- Answer = new List<string>();
- Children = new List<ItemBankDto>();
- }
- public string ShaCode { get; set; }
- public string PartitionKey { get; set; }
- public string RowKey { get; set; }
- public string Question { get; set; }
- public List<CodeValue> Option { get; set; }
- public List<string> Answer { get; set; }
- /// <summary>
- /// 知识点
- /// </summary>
- public List<Dictionary<string, object>> Concept { get; set; }
- public string Explain { get; set; }
- public string Type { get; set; }
- public string ResourceCode { get; set; }
- public string SubjectCode { get; set; }
- public string PShaCode { get; set; }
- public int ResourceType { get; set; }
- [JsonIgnore]
- public List<ItemBankDto> Children { get; set; }
- }
- }
|