using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// TableInfoResult Data Structure. /// [Serializable] public class TableInfoResult : AopObject { /// /// 返回TableListResult集合 /// [XmlArray("table_info_list")] [XmlArrayItem("table_list_result")] public List TableInfoList { get; set; } } }