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.
99 lines
2.6 KiB
99 lines
2.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; }
|
|
|
|
/// <summary>
|
|
/// 꽃뭔瑯뵀Id
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 꽃뭔瑯뵀츰냔
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountName { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.PurchaseMethod? PurchaseMethod { get; set; }
|
|
|
|
/// <summary>
|
|
/// 꽃뭔데Id
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.Platform? PurchasePlatform { get; set; }
|
|
|
|
/// <summary>
|
|
/// 꽃뭔�Id
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string PurchaserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 꽃뭔�츰냔
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string PurchaserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 듦팟Id
|
|
/// </summary>
|
|
public long? ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 우뒵데뵀
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string WaybillNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 覩迦우뒵무鱇츰냔
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string SourceExpressName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 覩迦우뒵무鱇Id
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string SourceExpressId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 커깃우뒵무鱇츰냔
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string TargetExpressName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 커깃우뒵무鱇Id
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string TargetExpressId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 백橄땐데Sku
|
|
/// </summary>
|
|
[Column(StringLength = 500)]
|
|
public string BelongSkuIds { get; set; }
|
|
|
|
[Column(DbType = "bit")]
|
|
public bool IsEnabled { get; set; } = true;
|
|
}
|
|
|
|
}
|
|
|