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.
 
 

35 lines
746 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using com.hitrust.trustpay.client.market;
namespace Bwp.ABCClient2.Market
{
public class BatchQueryClient
{
public BatchQueryResult Submit()
{
var request = new BatchQueryRequest();
request.RequestID = RequestID;
request.OrgReqSeqTrace = OrgReqSeqTrace;
request.BatchID = BatchID;
return null;
}
/// <summary>
/// 请求流水号
/// </summary>
public string RequestID { get; set; }
/// <summary>
/// 原批量交易流水号
/// </summary>
public string OrgReqSeqTrace { get; set; }
/// <summary>
/// 原批次号
/// </summary>
public string BatchID { get; set; }
}
}