using System.Collections.Generic;
namespace Myshipping.Application.Service.ExpressDelivery.Dto
{
///
/// 顺丰接收路由动态Dto类
///
public class SFReceiveRouteDto
{
public Body Body { get; set; }
}
public class Body
{
public List WaybillRoute { get; set; }
}
public class WaybillRoute
{
public string AcceptAddress { get; set; }
public string AcceptTime { get; set; }
public string Id { get; set; }
public string Orderid { get; set; }
public string Mailno { get; set; }
public string OpCode { get; set; }
public string Remark { get; set; }
public string ReasonCode { get; set; }
public string ReasonName { get; set; }
}
}