NewGaoKaoApi/PaymentSDK/AliPay/Domain/AnttechBlockchainDefinTrade...

25 lines
705 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AnttechBlockchainDefinTradeQueryModel Data Structure.
/// </summary>
[Serializable]
public class AnttechBlockchainDefinTradeQueryModel : AopObject
{
/// <summary>
/// 企业/报关单查询请求 in Json string
/// </summary>
[XmlElement("encoded_biz_param")]
public string EncodedBizParam { get; set; }
/// <summary>
/// sys_param, 按其中字段function区分查询类型如企业认证还是报关单查询。
/// </summary>
[XmlElement("sys_param")]
public SystemParam SysParam { get; set; }
}
}