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.
26 lines
922 B
26 lines
922 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; }
|
|
|
|
/// <summary>
|
|
/// 是否失效 失效=1 其余情况默认为有效 仅在查询条件IncludePurchaseSkuBasicInfo=1时具备该值
|
|
/// </summary>
|
|
public int? IsInvalid { get; set; }
|
|
}
|
|
}
|
|
|