You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Dianping
{
/// <summary>
/// 团购门店本地验券历史查询,通过该接口查询当前渠道验券历史
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CouponLocalRecordRequest
{
/// <summary>
/// 厂商门店id
/// </summary>
[JsonProperty(PropertyName = "vendorShopId")]
public string VendorShopId { get; set; }
/// <summary>
/// 日期 2016-08-12
/// </summary>
[JsonProperty(PropertyName = "date")]
public string Date { get; set; }
/// <summary>
/// 查询起始位置
/// </summary>
[JsonProperty(PropertyName = "offset")]
public int Offset { get; set; }
/// <summary>
/// 查询条数
/// </summary>
[JsonProperty(PropertyName = "limit")]
public int Limit { get; set; }
/// <summary>
/// 商家团购订单Id提供的话返回该订单信息
/// </summary>
[JsonProperty(PropertyName = "vendorOrderId")]
public string VendorOrderId { get; set; }
}
}