using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAccountCashpoolCreateModel Data Structure. /// [Serializable] public class AlipayAccountCashpoolCreateModel : AopObject { /// /// 设置资金池名称 /// [XmlElement("cash_pool_name")] public string CashPoolName { get; set; } /// /// INITIAL/RUN/STOP,初始、运行、暂停状态 /// [XmlElement("cash_pool_status")] public string CashPoolStatus { get; set; } /// /// 备注信息 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 提交人名称 /// [XmlElement("operator")] public string Operator { get; set; } } }