using FreeSql.DataAnnotations;
namespace BBWYB.Server.Model.Db
{
///
/// 快递单关系表
///
[Table(Name = "expressorderrelationinfo", DisableSyncStructure = true)]
public partial class ExpressOrderRelationInfo
{
[Column(IsPrimary = true)]
public long Id { get; set; }
///
/// 创建时间
///
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
///
/// 订单Id
///
[Column(StringLength = 50)]
public string OrderId { get; set; }
///
/// 采购单Id
///
[Column(StringLength = 50)]
public string PurchaseOrderId { get; set; }
///
/// 店铺Id
///
public long? ShopId { get; set; }
///
/// 快递单号
///
[Column(StringLength = 50)]
public string WayBillNo { get; set; }
}
}