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 PeriodSubject : Period { /// /// 学段编码 /// public string Pcode { get; set; } } }