Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertDeliveryDiscountWebBatchqueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiAdvertDeliveryDiscountWebBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryDiscountWebBatchqueryModel : AopObject
{
/// <summary>
/// 分配的固定的渠道CODE需要找运营申请
/// </summary>
[JsonProperty("channel")]
public string Channel { get; set; }
/// <summary>
/// 纬度,根据经纬度查询附近的券
/// </summary>
[JsonProperty("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度,根据经纬度查询附近的券
/// </summary>
[JsonProperty("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 手机号码根据手机号码查询支付宝账户ID
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 门店ID如果设置门店则查询门店下发行的券
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
}
}