using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DbLink;
///
/// 数据连接列表输出.
///
[SuppressSniffer]
public class DbLinkListOutput : TreeModel
{
///
/// 连接名称.
///
public string fullName { get; set; }
///
/// 数据库类型.
///
public string dbType { get; set; }
///
/// 主机地址.
///
public string host { get; set; }
///
/// 端口.
///
public string port { get; set; }
///
/// 添加时间(时间戳).
///
public DateTime? creatorTime { get; set; }
///
/// 添加人.
///
public string creatorUser { get; set; }
///
/// 修改时间(时间戳).
///
public DateTime? lastModifyTime { get; set; }
///
/// 修改人.
///
public string lastModifyUser { get; set; }
///
/// 是否可用(1-可用,0-禁用).
///
public int? enabledMark { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
}