NewGaoKaoApi/New_College.Model/ViewModels/Query/AliPayQuery.cs

29 lines
660 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class AliPayQuery
{
}
public class AlipayTradeWapPayQuery
{
public string OutTradeNo { get; set; } = "";
public string Body { get; set; } = "六纬志愿VIP";
public decimal TotalAmount { get; set; } = 0;
public string NotifyUrl { get; set; } = "";
public string ReturnUrl { get; set; } = "";
public string PaymentChannel { get; set; } = "支付宝支付";
public string PaymentType { get; set; } = "ZFB";
public int CustomerId { get; set; }
}
}