NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiItemTaobaoIndexQueryM...

49 lines
1.2 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>
/// KoubeiItemTaobaoIndexQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiItemTaobaoIndexQueryModel : AopObject
{
/// <summary>
/// 城市编码
/// </summary>
[XmlElement("city_id")]
public string CityId { get; set; }
/// <summary>
/// 扩展信息json格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 纬度
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 场景码,TAO_BIG_BUY:淘抢购大牌抢购;JU_BIG_BUY:聚划算大牌抢购
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}