using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AreaDetail Data Structure. /// [Serializable] public class AreaDetail : AopObject { /// /// 国标六位行政区划代码;参考http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/。当area_name为“其他”等时该字段可能为空 /// [XmlElement("area_code")] public string AreaCode { get; set; } /// /// 行政区划名称;参考http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/。注意,该字段可能存在“其他”、“未知”等 /// [XmlElement("area_name")] public string AreaName { get; set; } /// /// 小程序在该区域下的pv /// [XmlElement("area_pv")] public long AreaPv { get; set; } /// /// 小程序在该区域下的uv /// [XmlElement("area_uv")] public long AreaUv { get; set; } } }