1234567891011121314151617181920212223242526 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class SingleFundDetailItemAOPModel : AopObject
- {
-
-
-
- [XmlArray("batch_fund_item_model_list")]
- [XmlArrayItem("batch_fund_item_a_o_p_model")]
- public List<BatchFundItemAOPModel> BatchFundItemModelList { get; set; }
-
-
-
- [XmlElement("consume_record")]
- public ConsumeRecordAOPModel ConsumeRecord { get; set; }
- }
- }
|