using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Core.Models { [TableSpace(Name = "Core")] public class SchoolClass : TableEntity { /// /// 班级名称 /// public string Name { get; set; } /// /// 班级code /// public string Code { get; set; } /// /// 学校编码 /// public string SchoolCode { get; set; } /// /// 学校名称 /// public string SchoolName { get; set; } /// /// 分校代码 /// public string CampusCode { get; set; } /// /// 分校名称 /// public string CampusName { get; set; } /// /// 学段编码 /// public string PeriodCode { get; set; } /// /// 学段名称 /// public string PeriodName { get; set; } /// /// 年级编码 1 2 3 4 5 6 /// public int GradeCode { get; set; } /// /// 年级名称 一年级 二年级 /// public string GradeName { get; set; } /// /// 绑定 届数code 2019 /// public int SessionCode { get; set; } /// /// 绑定 届数 2019届 /// public string SessionName { get; set; } /// /// 绑定学期code /// public int TermCode { get; set; } /// /// 绑定学期名称 /// public string TermName { get; set; } /// /// 选择开班时间201903 最小月份 /// public int StartTime {get;set;} /// /// 选择结束时间201907 最小月份 /// public int EndTime { get; set; } } }