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.Table;
  6. namespace TEAMModelOS.Model.Common.Models
  7. {
  8. [TableSpace(Name = "Common")]
  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. }