多任务处理输入转换和输出

This commit is contained in:
lindj 2024-01-17 17:12:31 +08:00
parent 70981fb985
commit 629a4d2fb5

View File

@ -9,9 +9,13 @@ namespace ConsoleApp2.Options
public class TableInfo
{
public long SimulaRowCount { get; set; }//模拟的记录条数
public int InputTaskCount { get; set; } = 1;
public int TransformTaskCount { get; set; } = 1;
public int OutPutTaskCount { get; set; } = 1;
}
public class InputTableOptions
{
public Dictionary<string, TableInfo> TableInfoConfig { get; set; } = new();
}
}