using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiAdvertDeliveryDiscountWebBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertDeliveryDiscountWebBatchqueryModel : AopObject { /// /// 分配的固定的渠道CODE,需要找运营申请 /// [JsonProperty("channel")] public string Channel { get; set; } /// /// 纬度,根据经纬度查询附近的券 /// [JsonProperty("latitude")] public string Latitude { get; set; } /// /// 经度,根据经纬度查询附近的券 /// [JsonProperty("longitude")] public string Longitude { get; set; } /// /// 手机号码,根据手机号码查询支付宝账户ID /// [JsonProperty("mobile")] public string Mobile { get; set; } /// /// 门店ID,如果设置门店,则查询门店下发行的券 /// [JsonProperty("shop_id")] public string ShopId { get; set; } } }