using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Carts; namespace ARW.Model.Dto.Api.Pay { /// /// 待结算的商品对象Api /// /// @author lwh /// @date 2023-09-24 /// public class GoodsRequest { /// /// 购物车ID /// public int CartId { get; set; } /// /// 商品Id /// public long SpuId { get; set; } /// /// 商品SkuId /// public int SkuId { get; set; } /// /// 购买数量 /// public int Quantity { get; set; } /// /// 店铺guid /// public long StoreId { get; set; } /// /// 购物车加入时间 /// public DateTime JoinCartTime { get; set; } } }