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.
30 lines
626 B
30 lines
626 B
namespace learun.database
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.09.19
|
|
/// 描 述:数据库连接
|
|
/// </summary>
|
|
public class DbModel
|
|
{
|
|
/// <summary>
|
|
/// 数据库编码
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string F_DBName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据库类型
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string F_DbType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 连接地址
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string F_DbConnection { get; set; }
|
|
}
|
|
}
|