Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jz-dmp-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姚本章
jz-dmp-service
Commits
88e4a4f9
Commit
88e4a4f9
authored
Dec 21, 2020
by
mcb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
ec2fd30f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
113 additions
and
0 deletions
+113
-0
SourceDbNameListDto.java
.../controller/DataIntegration/bean/SourceDbNameListDto.java
+113
-0
No files found.
src/main/java/com/jz/dmp/modules/controller/DataIntegration/bean/SourceDbNameListDto.java
0 → 100644
View file @
88e4a4f9
package
com
.
jz
.
dmp
.
modules
.
controller
.
DataIntegration
.
bean
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
/**
* @ClassName: SourceDbNameListDto
* @Description: 源数据库名称列表返回参数
* @Author :Bellamy
* @Date 2020/12/21
* @Version 1.0
*/
@ApiModel
(
value
=
"源数据库名称列表返回参数"
,
description
=
"源数据库名称列表返回参数"
)
public
class
SourceDbNameListDto
{
/*
* 源数据id
* */
@ApiModelProperty
(
value
=
"源数据id"
)
String
id
;
/*
* 源数据库名称
* */
@ApiModelProperty
(
value
=
"源数据库名称"
)
String
datasourceNameOrg
;
/*
* 数据库连接地址
* */
@ApiModelProperty
(
value
=
"数据库连接地址"
)
String
jdbcUrl
;
/*
* 数据库类型名称
* */
@ApiModelProperty
(
value
=
"数据库类型名称"
)
String
datasourceTypeName
;
/*
* 源数据库和数据库类型名称
* */
@ApiModelProperty
(
value
=
"源数据库和数据库类型名称"
)
String
datasourceName
;
/*
* 数据库类型(大写)
* */
@ApiModelProperty
(
value
=
"数据库类型(大写)"
)
String
datasourceType
;
/*
* 数据源分类
* */
@ApiModelProperty
(
value
=
"数据源分类"
)
String
datasourceCatecode
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getDatasourceNameOrg
()
{
return
datasourceNameOrg
;
}
public
void
setDatasourceNameOrg
(
String
datasourceNameOrg
)
{
this
.
datasourceNameOrg
=
datasourceNameOrg
;
}
public
String
getJdbcUrl
()
{
return
jdbcUrl
;
}
public
void
setJdbcUrl
(
String
jdbcUrl
)
{
this
.
jdbcUrl
=
jdbcUrl
;
}
public
String
getDatasourceTypeName
()
{
return
datasourceTypeName
;
}
public
void
setDatasourceTypeName
(
String
datasourceTypeName
)
{
this
.
datasourceTypeName
=
datasourceTypeName
;
}
public
String
getDatasourceName
()
{
return
datasourceName
;
}
public
void
setDatasourceName
(
String
datasourceName
)
{
this
.
datasourceName
=
datasourceName
;
}
public
String
getDatasourceType
()
{
return
datasourceType
;
}
public
void
setDatasourceType
(
String
datasourceType
)
{
this
.
datasourceType
=
datasourceType
;
}
public
String
getDatasourceCatecode
()
{
return
datasourceCatecode
;
}
public
void
setDatasourceCatecode
(
String
datasourceCatecode
)
{
this
.
datasourceCatecode
=
datasourceCatecode
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment