shop_template_api/ARW.Model/Dto/Api/Pay/RepayDtoApi.cs
2023-10-24 17:35:58 +08:00

45 lines
966 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Dto.Api.OrderManage.Orders;
using ARW.Model.Models.Business.Carts;
namespace ARW.Model.Dto.Api.Pay
{
/// <summary>
/// 下单信息Dto对象Api
///
/// @author lwh
/// @date 2023-10-24
/// </summary>
public class RepayDtoApi
{
/// <summary>
/// 客户Guid
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 小程序用户OpenId
/// </summary>
public string OpenId { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string OrderNo { get; set; }
/// <summary>
/// 支付类型
/// </summary>
public int PayType { get; set; } = 1;
/// <summary>
/// 前端传递金额
/// </summary>
public decimal TotalAmount { get; set; }
}
}