45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiMemberDataItemBigbuyQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiMemberDataItemBigbuyQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 城市编码,国标码
|
||
/// </summary>
|
||
[XmlElement("city_code")]
|
||
public string CityCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 纬度,当城市id未传时用来获取对应城市id
|
||
/// </summary>
|
||
[XmlElement("latitude")]
|
||
public long Latitude { get; set; }
|
||
|
||
/// <summary>
|
||
/// 经度,当城市id未传时用来获取对应城市id
|
||
/// </summary>
|
||
[XmlElement("longitude")]
|
||
public long Longitude { get; set; }
|
||
|
||
/// <summary>
|
||
/// 展位码,如果有放置展位需求的话,用于请求cdp查询对应展位
|
||
/// </summary>
|
||
[XmlArray("space_code_list")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> SpaceCodeList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 蚂蚁统一会员ID
|
||
/// </summary>
|
||
[XmlElement("user_id")]
|
||
public string UserId { get; set; }
|
||
}
|
||
}
|