xcx_temp_api/ARW.Model/Vo/Business/Carts/CartVo.cs
2023-07-24 21:26:27 +08:00

64 lines
1.3 KiB
C#

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