shop_template_api/ARW.Model/Dto/Api/Pay/CommitPayDtoApi.cs
2023-09-27 22:44:48 +08:00

47 lines
949 B
C#

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