using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
/// 快递动态
///
[SugarTable("express_delivery_status")]
[Description("快递动态")]
public class ExpressDeliveryStatus : DBEntityTenant
{
///
/// 快递订单记录主键
///
public long? OrderId { get; set; }
///
/// 快递运单号
///
public string MailNo { 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; }
}
}