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 AnswerInfo : TableEntity { /// /// 学号 /// public string StudentId { get; set; } /// /// 考试ID /// public string ExNO { get; set; } /// /// 题序 /// public string Index { get; set; } /// /// 作答选项 /// public string Selection { get; set; } /// /// 得分 /// public string Point { get; set; } } }