key1_beacon_api/ARW.Model/Vo/Api/Custom/GoodsCollections/GoodsCollectionApiVo.cs
2023-10-22 16:34:17 +08:00

68 lines
1.3 KiB
C#

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