NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceConsum...

43 lines
1.4 KiB
C#
Raw Permalink 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>
/// AlipayDataDataserviceConsumRatioQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceConsumRatioQueryModel : AopObject
{
/// <summary>
/// 区域编码多个编码的时候用英文逗号分割最多不超过20个
/// </summary>
[XmlElement("area_code")]
public string AreaCode { get; set; }
/// <summary>
/// 区域类型枚举值city(城市)、county(区县)、town(街道)、trading(商圈)
/// </summary>
[XmlElement("area_type")]
public string AreaType { get; set; }
/// <summary>
/// 数据类型枚举值dist(来源地占比)、gender(性别占比)、capacity(消费能力占比)、age(年龄占比)
/// </summary>
[XmlElement("data_type")]
public string DataType { get; set; }
/// <summary>
/// 查询占比的结束日期格式为4位年+2位月最晚为当前月的上一月
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 查询指数的开始日期格式为4位年+2位月最早为近6个月的开始月
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
}
}