using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2.Options { public class TableInfo { public long SimulaRowCount { get; set; }//模拟的记录条数 } public class InputTableOptions { public Dictionary TableInfoConfig { get; set; } = new(); } }