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.
 
 

66 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using com.hitrust.trustpay.client.market;
using com.hitrust.trustpay.client;
using System.IO;
namespace Bwp.ABCClient2.Market
{
/// <summary>
/// 实时付款客户端,不需要K宝
/// </summary>
public class PayFeeClient:ClientBase
{
public void NewRequestID()
{
RequestID = NewRequestIDByTime();
}
public PayFeeResult Sumit()
{
throw new NotSupportedException();
//var request = new PayFeeRequest();
//request.FunctionID = "0030";
//request.PayAmount = PayAmount;
//request.Customer = Customer;
//request.FeeAmount = FeeAmount;
////交易类型11付款
//request.Flag = "11";
//request.Message = Message;
//request.RequestID = RequestID;
//TrxResponse tResponse = request.postRequest();
//return new PayFeeResult(tResponse);
}
/// <summary>
/// 请求流水号
/// </summary>
public string RequestID { get; set; }
/// <summary>
/// 金额
/// </summary>
public decimal PayAmount { get; set; }
/// <summary>
/// 客户号
/// </summary>
public string Customer { get; set; }
/// <summary>
/// 费用
/// </summary>
public decimal FeeAmount { get; set; }
/// <summary>
/// 交易信息
/// </summary>
public string Message { get; set; }
}
}