using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Table; namespace TEAMModelOS.Model.Syllabus.Models { [TableSpace(Name = "Syllabus")] public class Period : TableEntity { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// //public string Code { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 语言版本 /// public string Lang { get; set; } } }