using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Carts;
namespace ARW.Model.Dto.Api.Carts
{
///
/// 待结算的商品对象Api
///
/// @author lwh
/// @date 2023-09-24
///
public class GoodsRequest
{
///
/// 购物车ID
///
public int CartId { get; set; }
///
/// 购物车加入时间
///
public DateTime JoinCartTime { get; set; }
///
/// 小程序用户OpenId
///
public string openId { get; set; }
///
/// 待结算的商品集合
///
public string goodsRequestList { get; set; }
///
/// 发票信息
///
public string invoiceRequest { get; set; }
}
}