using DocTools.Dtos; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DBCHM.PdmModels { /// /// 关键词过滤 /// [Serializable] public class SelectedTables { public List tables { get; set; } = new List(); //var viewDict = new NameValueCollection(); //var procDict = new NameValueCollection(); public Dictionary viewDict { get; set; } = new Dictionary(); public Dictionary procDict { get; set; } = new Dictionary(); public void Clear() { this.tables.Clear(); this.viewDict.Clear(); this.procDict.Clear(); } } }