25 lines
684 B
C#
25 lines
684 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Common.Request.BorderOfficial
|
|
{
|
|
public class BOrderOfficialCancelParam {
|
|
/// <summary>
|
|
/// 任务ID
|
|
/// </summary>
|
|
public string taskId {get; set;}
|
|
/// <summary>
|
|
/// 订单ID
|
|
/// </summary>
|
|
public string orderId {get; set;}
|
|
/// <summary>
|
|
/// 取消原因,例:暂时不寄件
|
|
/// </summary>
|
|
public string cancelMsg {get; set;}
|
|
|
|
public override string ToString()
|
|
{
|
|
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
|
|
}
|
|
}
|
|
|
|
} |