MES-ETL/ConsoleApp2/Options/InputTableOptions.cs

22 lines
568 B
C#
Raw Normal View History

2024-01-12 16:50:37 +08:00
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; }//模拟的记录条数
2024-01-17 17:12:31 +08:00
public int InputTaskCount { get; set; } = 1;
public int TransformTaskCount { get; set; } = 1;
public int OutPutTaskCount { get; set; } = 1;
2024-01-12 16:50:37 +08:00
}
public class InputTableOptions
{
public Dictionary<string, TableInfo> TableInfoConfig { get; set; } = new();
2024-01-17 17:12:31 +08:00
2024-01-12 16:50:37 +08:00
}
}