NewGaoKaoApi/PaymentSDK/AliPay/Domain/AreaDetail.cs

37 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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