using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 确认订单 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiDuOrderConfirmRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 订单Id /// [JsonProperty(PropertyName = "orderId")] public string OrderId { get; set; } } }