24 lines
519 B
C#
24 lines
519 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipaySecurityProdXwbtestprodQueryResponse.
|
|
/// </summary>
|
|
public class AlipaySecurityProdXwbtestprodQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 11000
|
|
/// </summary>
|
|
[XmlElement("out_a")]
|
|
public string OutA { get; set; }
|
|
|
|
/// <summary>
|
|
/// xxxx
|
|
/// </summary>
|
|
[XmlElement("out_b")]
|
|
public long OutB { get; set; }
|
|
}
|
|
}
|