MES-ETL/ConsoleApp2/Options/CommandOptions.cs

19 lines
520 B
C#
Raw Normal View History

2024-01-12 16:50:37 +08:00
using System;
using System.ComponentModel;
using System.Configuration;
namespace ConsoleApp2.Options
{
public class CommandOptions
{
public string InputDir { get; set; } = "./MyDumper";
2024-01-22 15:44:37 +08:00
public bool IsMock { get; set; } = false;
public string NoFilterTables { get; set; }="";//不需要过滤的表列表
2024-01-12 16:50:37 +08:00
public bool Isutf8mb4 { get; set; } = true;
public short OldestShardKey { get; set; } = 23010;
2024-01-16 18:00:23 +08:00
public string OldestTime { get; set; } = "202301";
2024-01-12 16:50:37 +08:00
}
}