Region.cs 893 B

123456789101112131415161718192021222324252627
  1. using Microsoft.WindowsAzure.Storage.Table;
  2. using Newtonsoft.Json;
  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. public class Region :TableEntity
  11. {
  12. public int SysAddID { 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 DistrictId { get; set; }
  20. public string DistrictName { get; set; }
  21. public string AreaType { get; set; }
  22. public string Lang { get; set; }
  23. public double Lng { get; set; }
  24. public double Lat { get; set; }
  25. }
  26. }