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.
57 lines
1.6 KiB
57 lines
1.6 KiB
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "orderpurchaseinfo", DisableSyncStructure = true)]
|
|
public partial class OrderPurchaseInfo
|
|
{
|
|
[Column(IsPrimary = true, IsNullable = false)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(StringLength = 50, IsNullable = false)]
|
|
public string OrderId { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountId { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountName { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.PurchaseMethod? PurchaseMethod { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.Platform? PurchasePlatform { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaserName { get; set; }
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string WaybillNo { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string SourceExpressName { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string SourceExpressId { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string TargetExpressName { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string TargetExpressId { get; set; }
|
|
|
|
[Column(StringLength = 500)]
|
|
public string BelongSkuIds { get; set; }
|
|
}
|
|
|
|
}
|
|
|