using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduOrderBodyData { /// /// 错误码 /// [JsonProperty(PropertyName = "errno")] public string Errno { get; set; } /// /// 错误信息 /// [JsonProperty(PropertyName = "error")] public string Error { get; set; } /// ///数据 /// [JsonProperty(PropertyName = "data")] public BaiduOrderData OrderData { get; set; } } }