using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 数据连接 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_DBLINK")] public class DbLinkEntity : CLDEntityBase { /// /// 连接名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } /// /// 连接驱动. /// [SugarColumn(ColumnName = "F_DBTYPE")] public string DbType { get; set; } /// /// 主机名称. /// [SugarColumn(ColumnName = "F_HOST")] public string Host { get; set; } /// /// 端口. /// [SugarColumn(ColumnName = "F_PORT")] public int? Port { get; set; } /// /// 用户. /// [SugarColumn(ColumnName = "F_USERNAME")] public string UserName { get; set; } /// /// 密码. /// [SugarColumn(ColumnName = "F_PASSWORD")] public string Password { get; set; } /// /// 服务名称(ORACLE 用的). /// [SugarColumn(ColumnName = "F_SERVICENAME")] public string ServiceName { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 表模式. /// [SugarColumn(ColumnName = "F_DBSCHEMA")] public string DbSchema { get; set; } /// /// 表空间. /// [SugarColumn(ColumnName = "F_TABLESPACE")] public string TableSpace { get; set; } /// /// Oracle参数字段. /// [SugarColumn(ColumnName = "F_ORACLEPARAM")] public string OracleParam { get; set; } }