You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
736 B
C#

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
{
/// <summary>
/// 错误码
/// </summary>
[JsonProperty(PropertyName = "errno")]
public string Errno { get; set; }
/// <summary>
/// 错误信息
/// </summary>
[JsonProperty(PropertyName = "error")]
public string Error { get; set; }
/// <summary>
///数据
/// </summary>
[JsonProperty(PropertyName = "data")]
public BaiduOrderData OrderData { get; set; }
}
}