步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.8 KiB

using FreeSql.DataAnnotations;
using System;
namespace BBWY.Server.Model.Db
{
/// <summary>
/// 快递单表
/// </summary>
[Table(Name = "expressorder", DisableSyncStructure = true)]
public partial class ExpressOrder
{
[Column(IsPrimary = true)]
public long Id { get; set; }
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 快递公司名称
/// </summary>
[Column(StringLength = 100)]
public string ExpressName { get; set; }
/// <summary>
/// 订单Id
/// </summary>
[Column(StringLength = 100)]
public string OrderId { get; set; }
/// <summary>
/// 包裹类型(采购包裹=0 退货包裹=1)
/// </summary>
public int? PackageType { get; set; }
/// <summary>
/// 采购单Id;可空
/// </summary>
public string PurchaseOrderId { get; set; }
/// <summary>
/// 物流状态(0=待质检,1=已入库,2=派送中,3=运输中)
/// </summary>
[Column(MapType = typeof(int?))]
public Enums.TransportState? TransportStatus { get; set; }
[Column(DbType = "datetime")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 快递单号
/// </summary>
[Column(StringLength = 100)]
public string WayBillNo { get; set; }
/// <summary>
/// 质检入库时间
/// </summary>
[Column(DbType = "datetime")]
public DateTime? QualityInspectionInStoreTime { get; set; }
/// <summary>
/// 签名时间
/// </summary>
[Column(DbType = "datetime")]
public DateTime? SignTime { get; set; }
}
}