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.
21 lines
707 B
21 lines
707 B
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; }
|
|
}
|
|
}
|
|
|