using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.Custom.GoodsCollections
{
///
/// 商品收藏展示对象Api
///
/// @author lwh
/// @date 2023-10-22
///
public class GoodsCollectionVoApi
{
///
/// 描述 :商品guid
///
[JsonConverter(typeof(ValueToStringConverter))]
public long SpuId { get; set; }
///
/// 描述 :商品名称
///
public string Title { get; set; }
///
/// 描述 :商品封面
///
public string Thumb { get; set; }
///
/// 描述 :收藏人数
///
public int CollectionNum { get; set; }
///
/// 描述 :商品价格
///
public decimal Price { get; set; }
///
/// 描述 :商品划线价格
///
public decimal OriginPrice { get; set; }
///
/// 描述 :商品库存总量
///
public int SpuStockQuantity { get; set; }
///
/// 描述 :是否上架
///
public int IsPutOnSale { get; set;}
}
}