- 增加 IAsTable.SetTableName 自定义分表名;

This commit is contained in:
2881099
2023-11-22 21:52:53 +08:00
parent 5260c856a3
commit 99c3cd4ff6
3 changed files with 22 additions and 4 deletions

View File

@ -42,4 +42,9 @@ class ModAsTableImpl : IAsTable
if (tables.Any() == false) return AllTables;
return tables;
}
public IAsTable SetTableName(int index, string tableName)
{
throw new NotImplementedException();
}
}