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 ExamResult:CosmosEntity
{
public ExamResult()
{
pk = "ExamResult";
classes = new List();
studentScores = new List>();
studentIds = new List();
point = new List();
paper = new PaperSimple();
}
public string name { get; set; }
public long time { get; set; }
public string subjectId { get; set; }
public List classes { get; set; }
public List> studentScores { get; set; }
public List studentIds { get; set; }
public List point { get; set; }
public string schoolId { get; set; }
public PaperSimple paper { get; set; }
public string scope { get; set; }
public string examId { get; set; }
public string school { get; set; }
public int year { get; set; }
}
public class ClassRange {
public string gradeId { get; set; }
public string id { get; set; }
public string name { get; set; }
public List range { get; set; }
}
}