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(); Answer = new List(); Children = new List(); } public string ShaCode { get; set; } public string PartitionKey { get; set; } public string RowKey { get; set; } public string Question { get; set; } public List Option { get; set; } public List Answer { get; set; } /// /// 知识点 /// public List> 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 Children { get; set; } } }