NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiAdvertDeliveryDiscoun...

37 lines
1.0 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>
/// KoubeiAdvertDeliveryDiscountAuthwebBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryDiscountAuthwebBatchqueryModel : AopObject
{
/// <summary>
/// 分配的固定的渠道CODE需要找运营申请
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 纬度,根据经纬度查询附近的券
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度,根据经纬度查询附近的券
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 门店ID如果设置门店则查询门店下发行的券
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}