using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InstCashPoolAccountMappingVO Data Structure. /// [Serializable] public class InstCashPoolAccountMappingVO : AopObject { /// /// 资金池唯一标识 /// [XmlElement("cash_pool_id")] public string CashPoolId { get; set; } /// /// 当前机构账户 /// [XmlElement("inst_account")] public InstAccountDTO InstAccount { get; set; } /// /// 当前账号是否为资金池主账号,Y是,N不是 /// [XmlElement("main_account")] public string MainAccount { get; set; } /// /// 操作员 /// [XmlElement("operator")] public string Operator { get; set; } /// /// 父账号 /// [XmlElement("parent_inst_account")] public InstAccountDTO ParentInstAccount { get; set; } } }