From 629a4d2fb57c368afd03189b58158382d8a9de7b Mon Sep 17 00:00:00 2001 From: lindj <67092759@qq.com> Date: Wed, 17 Jan 2024 17:12:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E4=BB=BB=E5=8A=A1=E5=A4=84=E7=90=86?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E8=BD=AC=E6=8D=A2=E5=92=8C=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ConsoleApp2/Options/InputTableOptions.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ConsoleApp2/Options/InputTableOptions.cs b/ConsoleApp2/Options/InputTableOptions.cs index 49f7397..ece286a 100644 --- a/ConsoleApp2/Options/InputTableOptions.cs +++ b/ConsoleApp2/Options/InputTableOptions.cs @@ -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 TableInfoConfig { get; set; } = new(); + } }