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.
46 lines
1.7 KiB
46 lines
1.7 KiB
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class PurchaseSchemeProductSkuResponse : Model.Db.PurchaseSchemeProductSku
|
|
{
|
|
|
|
/// <summary>
|
|
/// 采购SKU标题 仅在查询条件IncludePurchaseSkuBasicInfo=1时具备该值
|
|
/// </summary>
|
|
public string PurchaseSkuTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购SKULogo 仅在查询条件IncludePurchaseSkuBasicInfo=1时具备该值
|
|
/// </summary>
|
|
public string PurchaseSkuLogo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购SKU单价 仅在查询条件IncludePurchaseSkuBasicInfo=1时具备该值
|
|
/// </summary>
|
|
public decimal? PurchaseSkuPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否失效 失效=1 其余情况默认为有效 仅在查询条件IncludePurchaseSkuBasicInfo=1时具备该值
|
|
/// </summary>
|
|
public int? IsInvalid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最近采购单价,仅在查询条件IncludePurchaseSkuStatisticsInfo=1时具备该值
|
|
/// </summary>
|
|
public decimal? LastPurchasedPrice { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 最近采购时间,仅在查询条件IncludePurchaseSkuStatisticsInfo=1时具备该值
|
|
/// </summary>
|
|
public DateTime? LastPurchasedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购金额,仅在查询条件IncludePurchaseSkuStatisticsInfo=1时具备该值
|
|
/// </summary>
|
|
public decimal? PurchasedAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购件数,仅在查询条件IncludePurchaseSkuStatisticsInfo=1时具备该值
|
|
/// </summary>
|
|
public int? PurchasedItemCount { get; set; } = 0;
|
|
}
|
|
}
|
|
|