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.

30 lines
806 B
C#

using System.Collections.Generic;
namespace Myshipping.Application.Service.ExpressDelivery.Dto
{
/// <summary>
/// 顺丰接收路由动态Dto类
/// </summary>
public class SFReceiveRouteDto
{
public Body Body { get; set; }
}
public class Body
{
public List<WaybillRoute> 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; }
}
}