18 lines
445 B
C#
18 lines
445 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayInsAutoAutoinsprodCommonConsultResponse.
|
|
/// </summary>
|
|
public class AlipayInsAutoAutoinsprodCommonConsultResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 具体内容按照业务类型对应的key值传输
|
|
/// </summary>
|
|
[XmlElement("biz_data")]
|
|
public string BizData { get; set; }
|
|
}
|
|
}
|