using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.QiMai { /// /// 同意退单(主动) /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiOrderRefundRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单Id /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } /// /// 订单No /// [JsonProperty(PropertyName = "orderNo")] public string OrderNo { get; set; } /// /// 退款金额 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } } }