123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace TEAMModelOS.Model.EvaluaTion.Dtos
- {
- public class ExerciseInfo
- {
- [JsonPropertyName("ExNO")]
- public string ExNO { get; set; }
- [JsonPropertyName("ExName")]
- public string Ex_name { get; set; }
- [JsonPropertyName("ExTime")]
- public string Ex_time { get; set; }
- [JsonPropertyName("EndTime")]
- public string End_time { get; set; }
- [JsonPropertyName("ExType")]
- public string Ex_type { get; set; }
- [JsonPropertyName("ExMode")]
- public string Ex_mode { get; set; }
- [JsonPropertyName("CourseNO")]
- public string Course_no { get; set; }
- [JsonPropertyName("CourseCode")]
- public string Class_code { get; set; }
- [JsonPropertyName("CourseName")]
- public string Class_name { get; set; }
- [JsonPropertyName("ClassID")]
- public string Class_no { get; set; }
- [JsonPropertyName("ReportSubject")]
- public string Course_name { get; set; }
- [JsonPropertyName("SERIALNUMBER")]
- public string Serialnumber { get; set; }
- [JsonPropertyName("StuCount")]
- public string Stucount { get; set; }
- [JsonPropertyName("AvgScore")]
- public string AvgScore { get; set; }
- [JsonPropertyName("QNumber")]
- public string QNumber { get; set; }
- [JsonIgnore]
- public string Cover { get; set; } = "1";
- [JsonPropertyName("SchoolName")]
- public string SchoolName { get; set; }
- [JsonPropertyName("GradeName")]
- public string GradeName {get;set;}
- [JsonPropertyName("AcademicYear")]
- public string AcademicYear { get; set; }
- [JsonPropertyName("SOrder")]
- public string SOrder { get; set; }
- }
- }
|