using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.EvaluaTion.Models { [TableSpace(Name = "Evaluation")] public class ExamInfo : TableEntity { /// /// 考试唯一标识 /// public string ExId { get; set; } /// /// 学校编码 /// public string SchoolCode { get; set; } /// /// 学校名称 /// public string SchoolName { get; set; } /// /// 班级编码 /// public string ClassCode { get; set; } /// /// 班级名称 /// public string ClassName { get; set; } /// /// 年级名称 /// public string GradeName { get; set; } /// /// 学期年份 /// public int AcademicYear { get; set; } = 0; /// /// 区别上下学期 /// public int SOrder { get; set; } /// /// 考试名称 /// public string ExName { get; set; } public string ExTime { get; set; } public string EndTime { get; set; } /// /// 科目名称 /// public string CouseName { get; set; } /// /// 科目编码 /// public string CouseCode { get; set; } /// /// 科目唯一标识 /// public string CouseNO { get; set; } public string StuCount { get; set; } public string QNumber { get; set; } /// /// 校平均分 /// public string SchoolAvgScore { get; set; } /// /// 班级平均分 /// public string ClassAvgScore { get; set; } } }