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 SchoolSession : TableEntity
{
public string Name { get; set; }
public int Code { get; set; }
public string SchoolCode { get; set; }
public string SchoolName { get; set; }
public string PeriodCode { get; set; }
public string PeriodName { get; set; }
///
/// 入学时间201909
///
public int Enrollment { get; set; }
///
/// 毕业时间202406
///
public int Graduate { get; set; }
}
}