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.
BookingHeChuan/Myshipping.Application/Service/ExpressDelivery/Dto/ExpressDeliveryStatusDto.cs

38 lines
1004 B
C#

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