You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
595 B
29 lines
595 B
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
|
|
{
|
|
/// <summary>
|
|
/// 总价格
|
|
/// </summary>
|
|
public decimal TotalPrice { get; set; }
|
|
/// <summary>
|
|
/// 支付金额
|
|
/// </summary>
|
|
public decimal PaymentMoney { get; set; }
|
|
/// <summary>
|
|
/// 充值状态
|
|
/// </summary>
|
|
public int Status { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|