43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
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; }
|
||
}
|
||
}
|