SchoolPeriod.cs 631 B

123456789101112131415161718192021
  1. using MessagePack;
  2. using Microsoft.WindowsAzure.Storage.Table;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using TEAMModelOS.SDK.Context.Attributes.Azure;
  7. namespace TEAMModelOS.Model.Core.Models
  8. {
  9. [TableSpace(Name = "Core")]
  10. [MessagePackObject(keyAsPropertyName: true)]
  11. public class SchoolPeriod : TableEntity
  12. {
  13. public string Name { get; set; }
  14. public string Code { get; set; }
  15. public string SchoolCode { get; set; }
  16. public string SchoolName { get; set; }
  17. public string PeriodType { get; set; }
  18. public int PeriodCycle { get; set; }
  19. }
  20. }