using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InstAllocationQuotaVO Data Structure. /// [Serializable] public class InstAllocationQuotaVO : AopObject { /// /// 管控账号 /// [XmlElement("account_no")] public string AccountNo { get; set; } /// /// BANK_CARD/BALANCE_ACCOUNT,银行卡/余额户 /// [XmlElement("account_type")] public string AccountType { get; set; } /// /// 额度限制是否激活 /// [XmlElement("active")] public bool Active { get; set; } /// /// 生效时间 /// [XmlElement("effective_time")] public string EffectiveTime { get; set; } /// /// 过期时间 /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 额度配置附言 /// [XmlElement("memo")] public string Memo { get; set; } /// /// OUT/IN,流出限额/流入限额 /// [XmlElement("quota_mode")] public string QuotaMode { get; set; } /// /// 额度金额,默认人民币币种 /// [XmlElement("quota_value")] public string QuotaValue { get; set; } } }