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