using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DbLink;
///
/// 数据连接下拉框输出.
///
[SuppressSniffer]
public class DbLinkSelectorOutput : TreeModel
{
///
/// 数据库类型.
///
public string dbType { get; set; }
///
/// 库名.
///
public string fullName { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
}