| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package jnpf.database.sql.model;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * 类功能
- *
- * @author JNPF开发平台组 YanYu
- * @version V3.3
- * @copyright 引迈信息技术有限公司
- * @date 2022-06-10
- */
- @Data
- public class DbStruct {
- /* ============= 通用 ============= */
- /**
- * 用户名
- */
- private String userName;
- /**
- * 表空间
- */
- private String dbTableSpace;
- /* ============= Mysql ============= */
- /**
- * 库名
- * Mysql目前没有使用到模式
- */
- private String mysqlDbName;
- /* ============= Oracle ============= */
- /**
- * 模式
- * Oracle目前没有使用库名
- * 与用户同名
- */
- private String oracleDbSchema;
- /**
- * Oracle 额外参数
- */
- private String oracleParam;
- /* ============= SqlServer ============= */
- /**
- * 库名
- */
- private String sqlServerDbName;
- /**
- * 模式(暂时不使用)
- * 默认:dbo
- * 可选:guest
- */
- private String sqlServerDbSchema = "dbo";
- /* ============= Dm ============= */
- /**
- * 模式
- * Dm目前没有使用库名
- * 与用户同名
- */
- private String dmDbSchema;
- /* ============= KingBase ============= */
- /**
- * 库名
- */
- private String kingBaseDbName;
- /**
- * 模式
- * 默认:public
- */
- private String kingBaseDbSchema = "public";
- /* ============= PostGre ============= */
- /**
- * 库名
- */
- private String postGreDbName;
- /**
- * 模式(暂时不使用)
- * 默认:public
- */
- private String postGreDbSchema = "public";
- }
|