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 { /// /// 下单信息Dto对象Api /// /// @author lwh /// @date 2023-10-24 /// public class RepayDtoApi { /// /// 客户Guid /// public long UserId { get; set; } /// /// 小程序用户OpenId /// public string OpenId { get; set; } /// /// 订单号 /// public string OrderNo { get; set; } /// /// 支付类型 /// public int PayType { get; set; } = 1; /// /// 前端传递金额 /// public decimal TotalAmount { get; set; } } }