using Newtonsoft.Json;
namespace Common.Request.Border
{
public class BOrderCallBackParamData {
///
/// 平台订单ID
///
public string orderId {get; set;}
///
/// 订单状态: 1,‘已接单’, 2,‘收件中’, 3,‘改派’, 7,‘快递员修改订单信息’, 9,‘用户主动取消’, 10,‘已取件’, 15,‘已结算’, 99,‘订单已取消’
///
public string status {get; set;}
///
/// 快递员姓名
///
public string courierName {get; set;}
///
/// 快递员电话
///
public string courierMobile {get; set;}
///
/// 重量
///
public string weight {get; set;}
///
/// 运费
///
public string freight {get; set;}
public override string ToString()
{
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
}
}
}