NewGaoKaoApi/PaymentSDK/AliPay/Domain/AnttechDataCollectBlockchai...

49 lines
1.3 KiB
C#
Raw Permalink 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>
/// AnttechDataCollectBlockchainSyncModel Data Structure.
/// </summary>
[Serializable]
public class AnttechDataCollectBlockchainSyncModel : AopObject
{
/// <summary>
/// 链上账号列表JSON字符串
/// </summary>
[XmlElement("account_data")]
public string AccountData { get; set; }
/// <summary>
/// 区块链唯一ID
/// </summary>
[XmlElement("block_chain_id")]
public string BlockChainId { get; set; }
/// <summary>
/// 链上合约列表JSON字符串
/// </summary>
[XmlElement("contract_data")]
public string ContractData { get; set; }
/// <summary>
/// 截止块高
/// </summary>
[XmlElement("end_height")]
public long EndHeight { get; set; }
/// <summary>
/// 起始块高
/// </summary>
[XmlElement("start_height")]
public long StartHeight { get; set; }
/// <summary>
/// 链上交易列表JSON字符串
/// </summary>
[XmlElement("transaction_data")]
public string TransactionData { get; set; }
}
}