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.
63 lines
1.3 KiB
63 lines
1.3 KiB
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "orderskucost", DisableSyncStructure = true)]
|
||
|
public partial class OrderSkuCost {
|
||
|
|
||
|
[Column(IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 发货运费
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? DeliveryExpressFreight { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 订单Id
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string OrderId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 支出打包费
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? OutPackAmount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 订单利润
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? Profit { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购运费
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? PurchaseFreight { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购货款
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SkuAmount { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sku总成本
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? TotalCost { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|