You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.AllinPay.Models.ResponseModels
{
public class ConsumeApplyQueryResponse : BaseResponse<ConsumeApplyResponse>
{
public ConsumeApplyResponse response { get; set; }
protected override ConsumeApplyResponse GetResultInfo()
{
return response;
}
}
public class ConsumeApplyResponse : BaseResultInfo
{
}
public class ConsumeApply
{
/// <summary>
/// 支付跳转地址
/// 支付方式为H5_CASHIER_VSP和GATEWAY_VSP不为空
/// </summary>
public string payurl { get; set; }
/// <summary>
/// 通联支付订单号
/// </summary>
public string orderNo { get; set; }
///// <summary>
///// 商户订单号(支付订单)
///// </summary>
//public string bizOrderNo { get; set; }
///// <summary>
///// 微信小程序支付串信息
///// </summary>
//public string payInfo { get; set; }
}
}