using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BlockChainAccountApiDO Data Structure. /// [Serializable] public class BlockChainAccountApiDO : AopObject { /// /// 账户hash /// [XmlElement("account_hash")] public string AccountHash { get; set; } /// /// 账户序号 /// [XmlElement("account_index")] public long AccountIndex { get; set; } /// /// 账户名 /// [XmlElement("account_name")] public string AccountName { get; set; } /// /// 账户状态 /// [XmlElement("account_status")] public long AccountStatus { get; set; } /// /// 账户余额 /// [XmlElement("balance")] public long Balance { get; set; } /// /// 区块链唯一ID /// [XmlElement("block_chain_id")] public string BlockChainId { get; set; } /// /// 账号所在块hash /// [XmlElement("block_hash")] public string BlockHash { get; set; } /// /// 智能科技统一客户ID /// [XmlElement("cid")] public string Cid { get; set; } /// /// 创建时间 /// [XmlElement("create_time")] public long CreateTime { get; set; } /// /// 父账号hash /// [XmlElement("parent_hash")] public string ParentHash { get; set; } /// /// 创建账号的交易hash /// [XmlElement("transaction_hash")] public string TransactionHash { get; set; } } }