using System;
namespace Myshipping.Application.Service.ExpressDelivery.Dto
{
public class ExpressDeliveryStatusDto
{
public long Id { get; set; }
///
/// 状态编码
///
public string StatusCode { get; set; }
///
/// 状态描述
///
public string StatusDesc { get; set; }
///
/// 快递方状态主键
///
public string StatusId { get; set; }
///
/// 收货时间
///
public DateTime? AcceptTime { get; set; }
///
/// 收货地址
///
public string AcceptAddress { get; set; }
///
/// 异常描述
///
public string ErrorDesc { get; set; }
///
/// 异常编码
///
public string ErrorCode { get; set; }
}
}