using System.Xml.Serialization;
|
|
using BWP.ABCClient.Common;
|
|
|
|
namespace BWP.ABCClient.Market
|
|
{
|
|
[XmlRoot(ElementName = "MSG")]
|
|
public class MarketResponse : MessageBase
|
|
{
|
|
public MessageContent Message { get; set; }
|
|
|
|
public class MessageContent
|
|
{
|
|
public ControlContent Control { get; set; }
|
|
public ParametersContent Parameters { get; set; }
|
|
public string Resultsets { get; set; }
|
|
}
|
|
|
|
public class ControlContent
|
|
{
|
|
public string MerchantTrxNo { get; set; }
|
|
|
|
public string Version { get; set; }
|
|
|
|
public string ChannelType { get; set; }
|
|
|
|
public string BusinessID { get; set; }
|
|
|
|
public string FunctionID { get; set; }
|
|
|
|
public string MerchantID { get; set; }
|
|
|
|
public string ReturnCode { get; set; }
|
|
|
|
public string ReturnMessage { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public string ClientIP { get; set; }
|
|
}
|
|
|
|
public class ParametersContent
|
|
{
|
|
public string OrderMg { get; set; }
|
|
public string CustomerNo { get; set; }
|
|
public string CustSignInfo2 { get; set; }
|
|
public string PayAmount { get; set; }
|
|
public string CustSignInfo { get; set; }
|
|
}
|
|
}
|
|
}
|