19 lines
520 B
C#
19 lines
520 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Configuration;
|
|
namespace ConsoleApp2.Options
|
|
{
|
|
public class CommandOptions
|
|
{
|
|
|
|
public string InputDir { get; set; } = "./MyDumper";
|
|
public bool IsMock { get; set; } = false;
|
|
public string NoFilterTables { get; set; }="";//不需要过滤的表列表
|
|
public bool Isutf8mb4 { get; set; } = true;
|
|
|
|
public short OldestShardKey { get; set; } = 23010;
|
|
public string OldestTime { get; set; } = "202301";
|
|
|
|
}
|
|
}
|