123456789101112131415161718192021 |
- using MessagePack;
- 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")]
- [MessagePackObject(keyAsPropertyName: true)]
- public class SchoolPeriod : TableEntity
- {
- public string Name { get; set; }
- public string Code { get; set; }
- public string SchoolCode { get; set; }
- public string SchoolName { get; set; }
- public string PeriodType { get; set; }
- public int PeriodCycle { get; set; }
- }
- }
|