using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// GFAOpenAPIDetailQueryResult Data Structure. /// [Serializable] public class GFAOpenAPIDetailQueryResult : AopObject { /// /// 业财受理单基础模型 /// [XmlArray("acceptance_list")] [XmlArrayItem("g_f_a_open_a_p_i_base_acceptance")] public List AcceptanceList { get; set; } /// /// 业财受理指令 /// [XmlArray("command_list")] [XmlArrayItem("g_f_a_open_a_p_i_command")] public List CommandList { get; set; } } }