using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; using TEAMModelOS.SDK.DI; namespace TEAMModelOS.SDK.Models { /// /// 考试成绩信息 /// public class ExamResultDto : CosmosEntity { public ExamResultDto() { classes = new List>(); result = new List>(); ids = new List(); point = new List(); } public string name { get; set; } public string time { get; set; } public string subjectCode { get; set; } public List> classes { get; set; } public List> result { get; set; } public List ids { get; set; } public List point { get; set; } public string schoolCode { get; set; } public string paperCode { get; set; } } }