using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.Carts
{
///
/// 购物车记录展示对象Api
///
/// @author lwh
/// @date 2023-07-20
///
public class CartVoApi
{
///
/// 描述 : 店铺Id
///
[JsonConverter(typeof(ValueToStringConverter))]
public int StoreId { get; set; }
///
/// 描述 :
///
public long StoreName { get; set; }
public int PromotionGoodsList { get; set; }
///
/// 描述 :客户Guid
///
[JsonConverter(typeof(ValueToStringConverter))]
public long CustomerGuid { get; set; }
///
/// 描述 :店铺Guid
///
[JsonConverter(typeof(ValueToStringConverter))]
public long ShopGuid { get; set; }
///
/// 描述 :商品Guid
///
public long GoodsGuid { get; set; }
///
/// 描述 :商品sku唯一标识
///
public int GoodsSkuId { get; set; }
///
/// 描述 :商品数量
///
public int CartGoodsNum { get; set; }
}
///
/// 购物车记录详情展示对象Api
///
public class CartApiDetailsVo
{
public int CartId { get; set; }
[JsonConverter(typeof(ValueToStringConverter))]
public long CartGuid { get; set; }
[JsonConverter(typeof(ValueToStringConverter))]
public long CustomerGuid { get; set; }
[JsonConverter(typeof(ValueToStringConverter))]
public long ShopGuid { get; set; }
public long GoodsGuid { get; set; }
public int GoodsSkuId { get; set; }
public int CartGoodsNum { get; set; }
}
}