You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
5 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库
|
||
|
/// </summary>
|
||
|
public class DatabaseOutput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 库定位器名
|
||
|
/// </summary>
|
||
|
public string ConfigId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库类型
|
||
|
/// </summary>
|
||
|
public SqlSugar.DbType DbType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库连接字符串
|
||
|
/// </summary>
|
||
|
public string ConnectionString { get; set; }
|
||
|
}
|