3 changed files with 44 additions and 15 deletions
@ -1,10 +1,21 @@ |
|||||
using System; |
namespace BBWYB.Server.Model.Dto |
||||
using System.Collections.Generic; |
|
||||
using System.Text; |
|
||||
|
|
||||
namespace BBWYB.Server.Model.Dto |
|
||||
{ |
{ |
||||
public class PurchaseSchemeProductSkuResponse : Model.Db.PurchaseSchemeProductSku |
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; } |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue