using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAccountCashpoolStatusModifyModel Data Structure. /// [Serializable] public class AlipayAccountCashpoolStatusModifyModel : AopObject { /// /// 资金池状态,INITIAL/RUN/STOP /// [XmlElement("adjust_status")] public string AdjustStatus { get; set; } /// /// 资金池ID /// [XmlElement("cash_pool_id")] public string CashPoolId { get; set; } /// /// 备注信息 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 操作员 /// [XmlElement("operator")] public string Operator { get; set; } } }