123456789101112131415161718192021222324252627 |
- using Microsoft.WindowsAzure.Storage.Table;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.Core.Models
- {
- [TableSpace(Name = "Core")]
- public class Region :TableEntity
- {
- public int SysAddID { get; set; }
- public string CountryId { get; set; }
- public string CountryName { get; set; }
- public string ProvinceId { get; set; }
- public string ProvinceName { get; set; }
- public string CityId { get; set; }
- public string CityName { get; set; }
- public string DistrictId { get; set; }
- public string DistrictName { get; set; }
- public string AreaType { get; set; }
- public string Lang { get; set; }
- public double Lng { get; set; }
- public double Lat { get; set; }
- }
- }
|