12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using MessagePack;
- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Table;
- namespace TEAMModelOS.Model.Common.Models
- {
- [TableSpace(Name = "Common")]
- [MessagePackObject(keyAsPropertyName: true)]
- public class School :TableEntity
- {
- [Key("code")]
- public string Code { get; set; }
- [Key("name")]
- public string Name { get; set; }
- [Key("countryId")]
- public string CountryId { get; set; }
- [Key("countryName")]
- public string CountryName { get; set; }
- [Key("provinceId")]
- public string ProvinceId { get; set; }
- [Key("provinceName")]
- public string ProvinceName { get; set; }
- [Key("cityId")]
- public string CityId { get; set; }
- [Key("cityName")]
- public string CityName { get; set; }
- [Key("address")]
- public string Address { get; set; }
- [Key("typeId")]
- public string TypeId { get; set; }
- [Key("typeName")]
- public string TypeName { get; set; }
- [Key("source")]
- public string Source { get; set; }
- [Key("distId")]
- public string DistId { get; set; }
- [Key("distName")]
- public string DistName { get; set; }
- [Key("schoolDist")]
- public string SchoolDist { get; set; }
- [Key("aliasName")]
- public string AliasName { get; set; }
- [Key("shortCode")]
- public string ShortCode { get; set; }
- }
- }
|