|
@@ -11,39 +11,22 @@ namespace TEAMModelOS.Model.Common.Models
|
|
|
[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; }
|
|
|
+ public string code { get; set; }
|
|
|
+ public string name { 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 address { get; set; }
|
|
|
+ public string typeId { get; set; }
|
|
|
+ public string typeName { get; set; }
|
|
|
+ public string source { get; set; }
|
|
|
+ public string distId { get; set; }
|
|
|
+ public string distName { get; set; }
|
|
|
+ public string schoolDist { get; set; }
|
|
|
+ public string aliasName { get; set; }
|
|
|
+ public string shortCode { get; set; }
|
|
|
}
|
|
|
}
|