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.
100 lines
2.9 KiB
100 lines
2.9 KiB
1 year ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Db.BBWY
|
||
|
{
|
||
|
|
||
|
[Table(Name = "skurecentcost", DisableSyncStructure = true)]
|
||
|
public partial class SkuRecentCost
|
||
|
{
|
||
|
|
||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最近一笔订单来源
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string RecentOrderId { get; set; }
|
||
|
|
||
|
[Column(DbType = "bigint")]
|
||
|
public long? ShopId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 耗材费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleConsumableAmount { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 发货运费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleDeliveryFreight { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 头程运费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleFirstFreight { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购运费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleFreight { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 入仓操作费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleInStorageAmount { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 操作费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleOperationAmount { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 出仓操作费(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleOutStorageAmount { get; set; } = 0.00M;
|
||
|
|
||
|
///// <summary>
|
||
|
///// 退货入仓操作费(单件)
|
||
|
///// </summary>
|
||
|
//[Column(DbType = "decimal(20,2)")]
|
||
|
//public decimal? SingleRefundInStorageAmount { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// SKU成本(单件)
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SingleSkuAmount { get; set; }
|
||
|
|
||
|
///// <summary>
|
||
|
///// 仓储费(单件)
|
||
|
///// </summary>
|
||
|
//[Column(DbType = "decimal(20,2)")]
|
||
|
//public decimal? SingleStorageAmount { get; set; } = 0.00M;
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? UpdateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 包装人工单价
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(20,2)")]
|
||
|
public decimal? SinglePackagingLaborAmount { get; set; } = 0.00M;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|