using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using POSV.OtherWaiMai; namespace POSV.Card { /// /// 订单查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiDuOrderResponse { /// /// 订单体 /// [JsonProperty(PropertyName = "body")] public BaiduOrderBodyData OrderBody { get; set; } } }