Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
inspect
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
912协同工作系统
项目监控管理工具
inspect
Commits
991472e0
提交
991472e0
authored
3月 06, 2020
作者:
czq
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
czq
上级
b26565fa
隐藏空白字符变更
内嵌
并排
正在显示
27 个修改的文件
包含
162 行增加
和
129 行删除
+162
-129
TechnologyController.java
...ava/com/zjty/inspect/controller/TechnologyController.java
+33
-33
Apply.java
src/main/java/com/zjty/inspect/entity/Apply.java
+2
-2
AssessmentReport.java
src/main/java/com/zjty/inspect/entity/AssessmentReport.java
+12
-12
Basis.java
src/main/java/com/zjty/inspect/entity/Basis.java
+2
-2
Browser.java
src/main/java/com/zjty/inspect/entity/Browser.java
+3
-1
BrowserDifficulty.java
src/main/java/com/zjty/inspect/entity/BrowserDifficulty.java
+7
-7
Database.java
src/main/java/com/zjty/inspect/entity/Database.java
+4
-2
DatabaseDifficulty.java
...main/java/com/zjty/inspect/entity/DatabaseDifficulty.java
+10
-9
DependOnNum.java
src/main/java/com/zjty/inspect/entity/DependOnNum.java
+2
-2
DifficultyAssessment.java
...in/java/com/zjty/inspect/entity/DifficultyAssessment.java
+6
-6
Estimate.java
src/main/java/com/zjty/inspect/entity/Estimate.java
+3
-3
FrameDifficulty.java
src/main/java/com/zjty/inspect/entity/FrameDifficulty.java
+8
-8
ManufacturingCost.java
src/main/java/com/zjty/inspect/entity/ManufacturingCost.java
+5
-5
Middleware.java
src/main/java/com/zjty/inspect/entity/Middleware.java
+3
-1
MiddlewareDifficulty.java
...in/java/com/zjty/inspect/entity/MiddlewareDifficulty.java
+9
-8
ProgramDifficulty.java
src/main/java/com/zjty/inspect/entity/ProgramDifficulty.java
+5
-4
Scale.java
src/main/java/com/zjty/inspect/entity/Scale.java
+2
-2
SysScale.java
src/main/java/com/zjty/inspect/entity/SysScale.java
+3
-3
TechnologyContent.java
src/main/java/com/zjty/inspect/entity/TechnologyContent.java
+5
-5
TechnologyList.java
src/main/java/com/zjty/inspect/entity/TechnologyList.java
+2
-2
TechnologyReport.java
src/main/java/com/zjty/inspect/entity/TechnologyReport.java
+3
-2
Workload.java
src/main/java/com/zjty/inspect/entity/Workload.java
+7
-7
ApplicationType.java
src/main/java/com/zjty/inspect/enums/ApplicationType.java
+9
-0
CompatibleBrowser.java
src/main/java/com/zjty/inspect/enums/CompatibleBrowser.java
+7
-1
DatabaseType.java
src/main/java/com/zjty/inspect/enums/DatabaseType.java
+3
-0
MiddlewareEnum.java
src/main/java/com/zjty/inspect/enums/MiddlewareEnum.java
+3
-0
OperateSystem.java
src/main/java/com/zjty/inspect/enums/OperateSystem.java
+4
-2
没有找到文件。
src/main/java/com/zjty/inspect/controller/TechnologyController.java
浏览文件 @
991472e0
...
...
@@ -95,37 +95,37 @@ public class TechnologyController {
return
ResponseEntity
.
ok
(
new
PageResult
<
Technology
>(
pageList
.
getTotalElements
(),
pageList
.
getContent
())
);
}
//
@GetMapping("/getReform")
//
public ResponseEntity getReform(){
//
Reform reform = new Reform();
//
//
return ResponseEntity.ok(reform);
//
}
//
//
@GetMapping("/getp")
//
public ResponseEntity getp(){
//
AssessmentReport assessmentReport = new AssessmentReport();
//
//
TechnologyList technologyList = assessmentReport.getTechnologyList();
//
List<TechnologyReport> technologyReports = technologyList.getTechnologyReports();
//
TechnologyReport technologyReport = new TechnologyReport();
//
List<TechnologyContent> technologyContents = technologyReport.getTechnologyContents();
//
TechnologyContent technologyContent = new TechnologyContent();
//
technologyContents.add(technologyContent);
//
technologyContents.add(technologyContent);
//
technologyReport.setTechnologyContents(technologyContents);
//
technologyReports.add(technologyReport);
//
technologyList.setTechnologyReports(technologyReports);
//
//
DependOnNum dependOnNum = new DependOnNum();
//
List<DependOnNum> dependOnNums = new ArrayList<>();
//
dependOnNums.add(dependOnNum);
//
DifficultyAssessment difficultyAssessment = assessmentReport.getDifficultyAssessment();
//
difficultyAssessment.getDatabaseDifficulty().setDependOnNum(dependOnNums);
//
difficultyAssessment.getMiddlewareDifficulty().setDependOnNum(dependOnNums);
//
difficultyAssessment.getProgramDifficulty().setDependOnNum(dependOnNums);
//
//
//
return ResponseEntity.ok(assessmentReport);
//
}
@GetMapping
(
"/getReform"
)
public
ResponseEntity
getReform
(){
Reform
reform
=
new
Reform
();
return
ResponseEntity
.
ok
(
reform
);
}
@GetMapping
(
"/getp"
)
public
ResponseEntity
getp
(){
AssessmentReport
assessmentReport
=
new
AssessmentReport
();
TechnologyList
technologyList
=
assessmentReport
.
getTechnologyList
();
List
<
TechnologyReport
>
technologyReports
=
technologyList
.
getTechnologyReports
();
TechnologyReport
technologyReport
=
new
TechnologyReport
();
List
<
TechnologyContent
>
technologyContents
=
technologyReport
.
getTechnologyContents
();
TechnologyContent
technologyContent
=
new
TechnologyContent
();
technologyContents
.
add
(
technologyContent
);
technologyContents
.
add
(
technologyContent
);
technologyReport
.
setTechnologyContents
(
technologyContents
);
technologyReports
.
add
(
technologyReport
);
technologyList
.
setTechnologyReports
(
technologyReports
);
DependOnNum
dependOnNum
=
new
DependOnNum
();
List
<
DependOnNum
>
dependOnNums
=
new
ArrayList
<>();
dependOnNums
.
add
(
dependOnNum
);
DifficultyAssessment
difficultyAssessment
=
assessmentReport
.
getDifficultyAssessment
();
difficultyAssessment
.
getDatabaseDifficulty
().
setDependOnNum
(
dependOnNums
);
difficultyAssessment
.
getMiddlewareDifficulty
().
setDependOnNum
(
dependOnNums
);
difficultyAssessment
.
getProgramDifficulty
().
setDependOnNum
(
dependOnNums
);
return
ResponseEntity
.
ok
(
assessmentReport
);
}
}
src/main/java/com/zjty/inspect/entity/Apply.java
浏览文件 @
991472e0
...
...
@@ -19,10 +19,10 @@ public class Apply {
/**
* 费用
*/
private
double
cost
;
private
double
cost
=
1.1
;
/**
* 原因
*/
private
String
reason
;
private
String
reason
=
"***********"
;
}
src/main/java/com/zjty/inspect/entity/AssessmentReport.java
浏览文件 @
991472e0
...
...
@@ -22,62 +22,62 @@ public class AssessmentReport {
/**
* 单位名称
*/
private
String
orgName
;
private
String
orgName
=
"****"
;
/**
* 系统名称
*/
private
String
sysName
;
private
String
sysName
=
"****"
;
/**
* 评估时间
*/
private
Date
time
;
private
Date
time
=
new
Date
()
;
/**
* 难度系数
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 类型预算 1:适配、2:改造
*/
private
Integer
type
;
private
Integer
type
=
1
;
/**
* 预算金额 double
*/
private
double
budget
;
private
double
budget
=
1.1
;
/**
* 原系统规模
*/
private
SysScale
sysScale
;
private
SysScale
sysScale
=
new
SysScale
()
;
/**
* 关键技术及替换策略建议
*/
private
TechnologyList
technologyList
;
private
TechnologyList
technologyList
=
new
TechnologyList
()
;
/**
* 基础工作量评估
*/
private
Workload
workload
;
private
Workload
workload
=
new
Workload
()
;
/**
* 额外依赖申请
*/
private
Apply
apply
;
private
Apply
apply
=
new
Apply
()
;
/**
* 适配难度评估
*/
private
DifficultyAssessment
difficultyAssessment
;
private
DifficultyAssessment
difficultyAssessment
=
new
DifficultyAssessment
()
;
/**
* 造价估算
*/
private
ManufacturingCost
manufacturingCost
;
private
ManufacturingCost
manufacturingCost
=
new
ManufacturingCost
()
;
}
src/main/java/com/zjty/inspect/entity/Basis.java
浏览文件 @
991472e0
...
...
@@ -18,10 +18,10 @@ public class Basis {
/**
* 开发量
*/
private
String
developmentVolume
;
private
double
developmentVolume
=
1.1
;
/**
* 修正系数
*/
private
double
correctionFactor
;
private
double
correctionFactor
=
1.1
;
}
src/main/java/com/zjty/inspect/entity/Browser.java
浏览文件 @
991472e0
...
...
@@ -5,6 +5,8 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.List
;
/**
* <h4>Description : 前端浏览器相关</h4>
*
...
...
@@ -19,7 +21,7 @@ public class Browser {
/**
* 兼容的浏览器
*/
private
CompatibleBrowser
compatibleBrowser
;
private
List
<
CompatibleBrowser
>
compatibleBrowsers
;
/**
* 插件安装情况int 1:是 2:否
...
...
src/main/java/com/zjty/inspect/entity/BrowserDifficulty.java
浏览文件 @
991472e0
...
...
@@ -17,37 +17,37 @@ public class BrowserDifficulty {
/**
* 系统评估
*/
private
String
systemEvaluation
;
private
double
systemEvaluation
=
1.1
;
/**
* 额外信息
*/
private
String
message
;
private
double
message
=
1.1
;
/**
* 综合难度
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 样式
*/
private
Integer
style
;
private
Integer
style
=
10
;
/**
* api
*/
private
Integer
api
;
private
Integer
api
=
10
;
/**
* 插件
*/
private
Integer
plugInUnit
;
private
Integer
plugInUnit
=
10
;
/**
* 用户额外需求
*/
private
String
demand
;
private
String
demand
=
"*********"
;
}
src/main/java/com/zjty/inspect/entity/Database.java
浏览文件 @
991472e0
...
...
@@ -6,6 +6,8 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.List
;
/**
* <h4>Description : 数据库相关</h4>
*
...
...
@@ -20,12 +22,12 @@ public class Database {
/**
* 数据库类型 枚举
*/
private
DatabaseType
databaseType
;
private
List
<
DatabaseType
>
databaseType
;
/**
* 其他
*/
private
String
other
t
ype
;
private
String
other
T
ype
;
/**
* 视图 int 1:是 2:否
...
...
src/main/java/com/zjty/inspect/entity/DatabaseDifficulty.java
浏览文件 @
991472e0
...
...
@@ -4,6 +4,7 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
...
...
@@ -19,45 +20,45 @@ public class DatabaseDifficulty {
/**
* 系统评估
*/
private
String
systemEvaluation
;
private
double
systemEvaluation
=
1.1
;
/**
* 额外信息
*/
private
String
message
;
private
double
message
=
1.1
;
/**
* 综合难度
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 依赖
*/
private
List
<
DependOnNum
>
dependOnNum
;
private
List
<
DependOnNum
>
dependOnNum
=
new
ArrayList
<>()
;
/**
* 容灾 (1:否 2:主备 3:分布式)
*/
private
Integer
disasterTolerance
;
private
Integer
disasterTolerance
=
1
;
/**
* 安全 1:是 2:否
*/
private
Integer
safe
;
private
Integer
safe
=
1
;
/**
* 读写分离 1:是 2:否
*/
private
Integer
separate
;
private
Integer
separate
=
1
;
/**
* 更高性能 1:是 2:否
*/
private
Integer
performance
;
private
Integer
performance
=
1
;
/**
* 其他内容
*/
private
Integer
otherContent
;
private
Integer
otherContent
=
1
;
}
src/main/java/com/zjty/inspect/entity/DependOnNum.java
浏览文件 @
991472e0
...
...
@@ -18,10 +18,10 @@ public class DependOnNum {
/**
* 依赖/jni名称
*/
private
String
name
;
private
String
name
=
"******"
;
/**
* 数量
*/
private
Integer
num
;
private
Integer
num
=
10
;
}
src/main/java/com/zjty/inspect/entity/DifficultyAssessment.java
浏览文件 @
991472e0
...
...
@@ -19,30 +19,30 @@ public class DifficultyAssessment {
6.数据库
7.本地程序
*/
private
String
des
;
private
String
des
=
"*************************"
;
/**
* 系统部署架构难度
*/
private
FrameDifficulty
frameDifficulty
;
private
FrameDifficulty
frameDifficulty
=
new
FrameDifficulty
()
;
/**
* 浏览器难度
*/
private
BrowserDifficulty
browserDifficulty
;
private
BrowserDifficulty
browserDifficulty
=
new
BrowserDifficulty
()
;
/**
* 中间件难度
*/
private
MiddlewareDifficulty
middlewareDifficulty
;
private
MiddlewareDifficulty
middlewareDifficulty
=
new
MiddlewareDifficulty
()
;
/**
* 数据库难度
*/
private
DatabaseDifficulty
databaseDifficulty
;
private
DatabaseDifficulty
databaseDifficulty
=
new
DatabaseDifficulty
()
;
/**
* 本地程序难度
*/
private
ProgramDifficulty
programDifficulty
;
private
ProgramDifficulty
programDifficulty
=
new
ProgramDifficulty
()
;
}
src/main/java/com/zjty/inspect/entity/Estimate.java
浏览文件 @
991472e0
...
...
@@ -18,16 +18,16 @@ public class Estimate {
/**
* 计算值
*/
private
double
Calculation
;
private
double
Calculation
=
1.1
;
/**
* 操作
*/
private
String
operation
;
private
String
operation
=
"*****"
;
/**
* 调整后
*/
private
double
adjustment
;
private
double
adjustment
=
1.1
;
}
src/main/java/com/zjty/inspect/entity/FrameDifficulty.java
浏览文件 @
991472e0
...
...
@@ -18,40 +18,40 @@ public class FrameDifficulty {
/**
* 系统评估
*/
private
String
systemEvaluation
;
private
double
systemEvaluation
=
1.1
;
/**
* 额外信息
*/
private
String
message
;
private
double
message
=
1.1
;
/**
* 综合难度
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 详情 1:混合 2:前后端分离
*/
private
Integer
details
;
private
Integer
details
=
1
;
/**
* 分布式 int 1:是 2:否
*/
private
Integer
distributed
;
private
Integer
distributed
=
1
;
/**
* 负载均衡 int 1:是 2:否
*/
private
Integer
loadBalance
;
private
Integer
loadBalance
=
1
;
/**
* 容灾 int 1:是 2:否
*/
private
Integer
disaster
;
private
Integer
disaster
=
1
;
/**
* 其他需求
*/
private
String
otherDemand
;
private
String
otherDemand
=
"***********"
;
}
src/main/java/com/zjty/inspect/entity/ManufacturingCost.java
浏览文件 @
991472e0
...
...
@@ -18,26 +18,26 @@ public class ManufacturingCost {
/**
* 人工单价
*/
private
Estimate
artificial
;
private
Estimate
artificial
=
new
Estimate
()
;
/**
* 基础工作量
*/
private
Estimate
workLoad
;
private
Estimate
workLoad
=
new
Estimate
()
;
/**
* 难度系数
*/
private
Estimate
degreeOfDifficulty
;
private
Estimate
degreeOfDifficulty
=
new
Estimate
()
;
/**
* 额外依赖服务申请
*/
private
Estimate
apply
;
private
Estimate
apply
=
new
Estimate
()
;
/**
* 预算费用
*/
private
Estimate
budgetaryCost
;
private
Estimate
budgetaryCost
=
new
Estimate
()
;
}
src/main/java/com/zjty/inspect/entity/Middleware.java
浏览文件 @
991472e0
...
...
@@ -5,6 +5,8 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.List
;
/**
* <h4>Description : 中间件/API</h4>
*
...
...
@@ -20,7 +22,7 @@ public class Middleware {
/**
* 原文件情况 枚举
*/
private
MiddlewareEnum
middlewareEnum
;
private
List
<
MiddlewareEnum
>
middlewareEnums
;
/**
* 其他中间件
*/
...
...
src/main/java/com/zjty/inspect/entity/MiddlewareDifficulty.java
浏览文件 @
991472e0
...
...
@@ -4,6 +4,7 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
...
...
@@ -19,22 +20,22 @@ public class MiddlewareDifficulty {
/**
* 系统评估
*/
private
String
systemEvaluation
;
private
double
systemEvaluation
=
1.1
;
/**
* 额外信息
*/
private
String
message
;
private
double
message
=
1.1
;
/**
* 综合难度
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 依赖详情
*/
private
List
<
DependOnNum
>
dependOnNum
;
private
List
<
DependOnNum
>
dependOnNum
=
new
ArrayList
<>()
;
/*
*用户额外信息详情
...
...
@@ -42,21 +43,21 @@ public class MiddlewareDifficulty {
/**
*Web集群 1:是 2:否
*/
private
Integer
web
;
private
Integer
web
=
1
;
/**
* Jndi集群 1:是 2:否
*/
private
Integer
jndi
;
private
Integer
jndi
=
1
;
/**
* Jms集群 1:是 2:否
*/
private
Integer
jms
;
private
Integer
jms
=
1
;
/**
* 消息路由 1:是 2:否
*/
private
Integer
route
;
private
Integer
route
=
1
;
}
src/main/java/com/zjty/inspect/entity/ProgramDifficulty.java
浏览文件 @
991472e0
...
...
@@ -4,6 +4,7 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
...
...
@@ -19,20 +20,20 @@ public class ProgramDifficulty {
/**
* 系统评估
*/
private
String
systemEvaluation
;
private
double
systemEvaluation
=
1.1
;
/**
* 额外信息
*/
private
String
message
;
private
double
message
=
1.1
;
/**
* 综合难度
*/
private
String
difficulty
;
private
double
difficulty
=
1.1
;
/**
* 依赖详情
*/
private
List
<
DependOnNum
>
dependOnNum
;
private
List
<
DependOnNum
>
dependOnNum
=
new
ArrayList
<>()
;
}
src/main/java/com/zjty/inspect/entity/Scale.java
浏览文件 @
991472e0
...
...
@@ -18,10 +18,10 @@ public class Scale {
/**
* 数量
*/
private
Integer
num
;
private
Integer
num
=
10
;
/**
* 备注
*/
private
String
des
;
private
String
des
=
"***"
;
}
src/main/java/com/zjty/inspect/entity/SysScale.java
浏览文件 @
991472e0
...
...
@@ -18,15 +18,15 @@ public class SysScale {
/**
* 代码
*/
private
Scale
code
;
private
Scale
code
=
new
Scale
()
;
/**
* 文件
*/
private
Scale
file
;
private
Scale
file
=
new
Scale
()
;
/**
* 模块
*/
private
Scale
mode
;
private
Scale
mode
=
new
Scale
()
;
}
src/main/java/com/zjty/inspect/entity/TechnologyContent.java
浏览文件 @
991472e0
...
...
@@ -18,25 +18,25 @@ public class TechnologyContent {
/**
* 本地程序开发
*/
private
String
local
;
private
String
local
=
"*****"
;
/**
* 关键字
*/
private
String
keyWord
;
private
String
keyWord
=
"********"
;
/**
* 所在文件
*/
private
String
file
;
private
String
file
=
"*****"
;
/**
* 位置
*/
private
String
position
;
private
String
position
=
"*******"
;
/**
* 替换策略
*/
private
Integer
strategy
;
private
Integer
strategy
=
1
;
}
src/main/java/com/zjty/inspect/entity/TechnologyList.java
浏览文件 @
991472e0
...
...
@@ -21,10 +21,10 @@ public class TechnologyList {
/**
* 建议
*/
private
String
des
;
private
String
des
=
"***************************************************"
;
/**
* 技术列表
*/
private
List
<
TechnologyReport
>
technologyReports
;
private
List
<
TechnologyReport
>
technologyReports
=
new
ArrayList
<>()
;
}
src/main/java/com/zjty/inspect/entity/TechnologyReport.java
浏览文件 @
991472e0
...
...
@@ -4,6 +4,7 @@ import lombok.AllArgsConstructor;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
...
...
@@ -20,12 +21,12 @@ public class TechnologyReport {
/**
* 关键技术
*/
private
String
technology
;
private
String
technology
=
"*******"
;
/**
* 技术内容
*/
private
List
<
TechnologyContent
>
technologyContents
;
private
List
<
TechnologyContent
>
technologyContents
=
new
ArrayList
<>()
;
}
src/main/java/com/zjty/inspect/entity/Workload.java
浏览文件 @
991472e0
...
...
@@ -17,17 +17,17 @@ public class Workload {
/**
* 描述
*/
private
String
des
;
private
String
des
=
"***************"
;
/**
* 开发费用
*/
private
double
cost
;
private
double
cost
=
1.2
;
/**
*模块数
*/
private
Integer
mode
;
private
Integer
mode
=
19
;
/*
* 依据
...
...
@@ -36,20 +36,20 @@ public class Workload {
/**
* 开发
*/
private
Basis
development
;
private
Basis
development
=
new
Basis
()
;
/**
* 测试
*/
private
Basis
test
;
private
Basis
test
=
new
Basis
()
;
/**
* 部署
*/
private
Basis
deploy
;
private
Basis
deploy
=
new
Basis
()
;
/**
* 合计
*/
private
Basis
total
;
private
Basis
total
=
new
Basis
()
;
}
src/main/java/com/zjty/inspect/enums/ApplicationType.java
浏览文件 @
991472e0
...
...
@@ -9,4 +9,13 @@ package com.zjty.inspect.enums;
public
enum
ApplicationType
{
OA
,
MAIL
,
youjian
,
taishi
,
shipin
,
shuju
,
menhu
,
shenqin
,
ditu
,
threed
,
other
,
}
src/main/java/com/zjty/inspect/enums/CompatibleBrowser.java
浏览文件 @
991472e0
package
com
.
zjty
.
inspect
.
enums
;
import
jdk.internal.dynalink.beans.BeansLinker
;
/**
* <h4>Description : 兼容的浏览器</h4>
*
...
...
@@ -8,7 +10,11 @@ package com.zjty.inspect.enums;
*/
public
enum
CompatibleBrowser
{
IE
,
IETRIDENT
,
CHROMEWEBKIT
,
FIREFOX
,
OPERA
,
SECURE
,
}
src/main/java/com/zjty/inspect/enums/DatabaseType.java
浏览文件 @
991472e0
...
...
@@ -9,4 +9,7 @@ package com.zjty.inspect.enums;
public
enum
DatabaseType
{
ORCLE
,
SQLSERVER
,
DB2
,
MYSQL
,
SYBASE
,
}
src/main/java/com/zjty/inspect/enums/MiddlewareEnum.java
浏览文件 @
991472e0
...
...
@@ -9,4 +9,7 @@ package com.zjty.inspect.enums;
public
enum
MiddlewareEnum
{
TOMCAT
,
JBOSS
,
NGNIX
,
WEBSPHERE
,
WEBLOGIC
,
}
src/main/java/com/zjty/inspect/enums/OperateSystem.java
浏览文件 @
991472e0
...
...
@@ -7,6 +7,8 @@ package com.zjty.inspect.enums;
* @Date : 2020-03-05 17:03
*/
public
enum
OperateSystem
{
CENTEROS
,
WINSERVER
,
CENTEROSREALES
,
WINSERVER2006
,
WINSERVER2012
,
REDHATREALES
,
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论