using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Dianping { /// /// 券状态查询,通过该接口可获取到团购券的基本信息。 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CouponStatusQueryRequest { /// /// 券码 /// [JsonProperty(PropertyName = "couponCode")] public string CouponCode { get; set; } /// /// 厂商门店id /// [JsonProperty(PropertyName = "vendorShopId")] public string VendorShopId { get; set; } } }