using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechDataServiceBlockchainAccountQueryModel Data Structure. /// [Serializable] public class AnttechDataServiceBlockchainAccountQueryModel : AopObject { /// /// 区块链账号唯一hash /// [XmlElement("account_hash")] public string AccountHash { get; set; } /// /// 账户状态 /// [XmlElement("account_status")] public string AccountStatus { get; set; } /// /// 金融科技租户名 /// [XmlElement("at_tenant_name")] public string AtTenantName { get; set; } /// /// 区块链ID /// [XmlElement("block_chain_id")] public string BlockChainId { get; set; } /// /// 区块链块唯一hash /// [XmlElement("block_hash")] public string BlockHash { get; set; } /// /// 账户结束时间戳 /// [XmlElement("end_timestamp")] public long EndTimestamp { get; set; } /// /// 分页页号 /// [XmlElement("page_no")] public long PageNo { get; set; } /// /// 每页大小 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 账户起始时间戳 /// [XmlElement("start_timestamp")] public long StartTimestamp { get; set; } } }