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.

43 lines
1.1 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 CouponCancelRequest
{
/// <summary>
/// 厂商门店id
/// </summary>
[JsonProperty(PropertyName = "vendorShopId")]
public string VendorShopId { get; set; }
/// <summary>
/// 券码
/// </summary>
[JsonProperty(PropertyName = "couponCode")]
public string CouponCode { get; set; }
/// <summary>
/// 商家ERP账号ID
/// </summary>
[JsonProperty(PropertyName = "eId")]
public string EId { get; set; }
/// <summary>
/// 商家ERP账号名称
/// </summary>
[JsonProperty(PropertyName = "eName")]
public string EName { get; set; }
}
}