School.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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 School :TableEntity
  12. {
  13. public string code { get; set; }
  14. public string name { get; set; }
  15. public string countryId { get; set; }
  16. public string countryName { get; set; }
  17. public string provinceId { get; set; }
  18. public string provinceName { get; set; }
  19. public string cityId { get; set; }
  20. public string cityName { get; set; }
  21. public string address { get; set; }
  22. public string typeId { get; set; }
  23. public string typeName { get; set; }
  24. public string source { get; set; }
  25. public string distId { get; set; }
  26. public string distName { get; set; }
  27. public string schoolDist { get; set; }
  28. public string aliasName { get; set; }
  29. public string shortCode { get; set; }
  30. }
  31. }