29 lines
657 B
C#
29 lines
657 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; }
|
|
}
|
|
}
|