using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class Area : CosmosEntity { public Area() { pk = "Area"; } /// /// 区域级名称 /// public string name { get; set; } /// /// 省编码 /// public string provCode { get; set; } /// /// 省名称 /// public string provName { get; set; } /// /// 城市编码 /// public string cityCode { get; set; } /// /// 城市名称 /// public string cityName { get; set; } /// /// 能力点版本 /// public string standard { get; set; } /// /// 能力点名称 /// public string standardName { get; set; } /// /// 单位 /// public string institution { get; set; } public long updateTime { get; set; } } }