Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayZdataserviceUnidataQueryResponse.cs

28 lines
659 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayZdataserviceUnidataQueryResponse.
/// </summary>
public class AlipayZdataserviceUnidataQueryResponse : AopResponse
{
/// <summary>
/// 查询结果集统一用string方式返回
/// </summary>
[JsonProperty("query_result")]
public string QueryResult { get; set; }
/// <summary>
/// 查询是否成功具体描述
/// </summary>
[JsonProperty("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 查询是否成功
/// </summary>
[JsonProperty("success")]
public string Success { get; set; }
}
}