emoticon_api/Infrastructure/Kuaidi100/Common/Request/Border/BOrderCallBackParam.cs
2023-10-20 21:58:42 +08:00

35 lines
1023 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
namespace Common.Request.Border
{
public class BOrderCallBackParam {
/// <summary>
/// 快递公司的编码,一律用小写字母,见《快递公司编码》,选填。
/// </summary>
public string kuaidicom {get; set;}
/// <summary>
/// 快递单号单号的最大长度是32个字符。
/// </summary>
public string kuaidinum {get; set;}
/// <summary>
/// 状态码
/// </summary>
public string status {get; set;}
/// <summary>
/// 状态描述
/// </summary>
public string message {get; set;}
/// <summary>
/// 订单内容
/// </summary>
public BOrderCallBackParamData data {get; set;}
public override string ToString()
{
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
}
}
}