步步为盈
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.

69 lines
1.6 KiB

3 years ago
using System;
namespace BBWY.Client.Models
{
public class PurchaseOrderResponse
{
public long Id { get; set; }
public DateTime? CreateTime { get; set; }
public string ProductId { get; set; }
public PurchaseMethod? PurchaseMethod { get; set; }
public string PurchaseOrderId { get; set; }
public Platform? PurchasePlatform { get; set; }
public int PurchaseQuantity { get; set; }
public int RemainingQuantity { get; set; }
public string SkuId { get; set; }
public StorageType? StorageType { get; set; }
public long ShopId { get; set; }
/// <summary>
/// 单件发货运费
/// </summary>
public decimal SingleDeliveryFreight { get; set; } = 0.00M;
/// <summary>
/// 单件操作费
/// </summary>
public decimal SingleOperationAmount { get; set; } = 0.00M;
/// <summary>
/// 单件耗材费
/// </summary>
public decimal SingleConsumableAmount { get; set; } = 0.00M;
/// <summary>
/// 单件仓储费
/// </summary>
public decimal SingleStorageAmount { get; set; } = 0.00M;
/// <summary>
/// 单件Sku成本
/// </summary>
public decimal SingleSkuAmount { get; set; } = 0.00M;
/// <summary>
/// 单件采购运费
/// </summary>
public decimal SingleFreight { get; set; } = 0.00M;
/// <summary>
/// 单件头程运费
/// </summary>
public decimal SingleFirstFreight { get; set; } = 0.00M;
}
}