You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
369 B
C#
20 lines
369 B
C#
12 months ago
|
namespace DS.Module.SqlSugar;
|
||
|
|
||
|
public class DbConfig
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据库编号
|
||
|
/// </summary>
|
||
|
public string ConnId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库类型
|
||
|
/// </summary>
|
||
|
public int DbType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库连接字符串
|
||
|
/// </summary>
|
||
|
|
||
|
public string Connection { get; set; }
|
||
|
}
|