using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.GuangChang { /// /// 订单退款 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class VposOrderRefundRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单编号 /// [JsonProperty(PropertyName = "tradeNo")] public string TradeNo { get; set; } /// /// 建行退款凭证 /// [JsonProperty(PropertyName = "payRefundNo")] public string PayRefundNo { get; set; } } }