using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Carts; namespace ARW.Model.Dto.Api.Carts { /// /// 下单信息Dto对象Api /// /// @author lwh /// @date 2023-09-24 /// public class CommitPayDtoApi { /// /// 客户guid /// public long CustomerGuid { get; set; } /// /// 支付类型 /// public int type { get; set; } /// /// 小程序用户OpenId /// public string openId { get; set; } /// /// 待结算的商品集合 /// public string goodsRequestList { get; set; } /// /// 发票信息 /// public string invoiceRequest { get; set; } } }