using GDZZ.Core.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Service.WXPay.Dto
{
public class RechargeOut: DEntityBase
{
///
/// 总价格
///
public decimal TotalPrice { get; set; }
///
/// 支付金额
///
public decimal PaymentMoney { get; set; }
///
/// 充值状态
///
public PayStatusEnum Status { get; set; }
///
/// 充值类型
///
public RechargeTypeEnum Type { get; set; }
}
}