1234567891011121314151617181920 |
- 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
- {
- /// <summary>
- /// 学段册别表
- /// </summary>
- [TableSpace(Name = "Syllabus")]
- public class PeriodSubjectEditionTerm : PeriodSubjectEdition
- {
- /// <summary>
- /// 版本code
- /// </summary>
- public string Psecode { get; set; }
- }
- }
|