School.cs 1.0 KB

123456789101112131415161718192021222324252627282930
  1. using Microsoft.WindowsAzure.Storage.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Core.Models
  7. {
  8. [TableSpace(Name = "Core")]
  9. public class School :TableEntity
  10. {
  11. public string code { get; set; }
  12. public string name { get; set; }
  13. public string countryId { get; set; }
  14. public string countryName { get; set; }
  15. public string provinceId { get; set; }
  16. public string provinceName { get; set; }
  17. public string cityId { get; set; }
  18. public string cityName { get; set; }
  19. public string address { get; set; }
  20. public string typeId { get; set; }
  21. public string typeName { get; set; }
  22. public string source { get; set; }
  23. public string distId { get; set; }
  24. public string distName { get; set; }
  25. public string schoolDist { get; set; }
  26. public string aliasName { get; set; }
  27. public string shortCode { get; set; }
  28. }
  29. }