Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tagManager
Overview
Overview
Details
Activity
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
lanmw
tagManager
Commits
34de2e50
Commit
34de2e50
authored
May 08, 2020
by
zhangkb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改系统导出接口添加系统编码到系统四个sheet中
parent
4c39dedc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
ExcelParserService.java
.../com/keymobile/tagmanager/service/ExcelParserService.java
+12
-0
No files found.
src/main/java/com/keymobile/tagmanager/service/ExcelParserService.java
View file @
34de2e50
...
@@ -213,9 +213,21 @@ public class ExcelParserService {
...
@@ -213,9 +213,21 @@ public class ExcelParserService {
this
.
exportSystemOldData
(
sysInfo
,
sysFunList
,
sysAppList
,
sysConsList
,
sysOperList
);
this
.
exportSystemOldData
(
sysInfo
,
sysFunList
,
sysAppList
,
sysConsList
,
sysOperList
);
}
}
sysFunList
.
addAll
(
sysInfo
.
getSysFunction
());
sysFunList
.
addAll
(
sysInfo
.
getSysFunction
());
for
(
SysFunction
sysFun
:
sysFunList
)
{
sysFun
.
setSystemCode
(
sysInfo
.
getSystemCode
());
}
sysAppList
.
addAll
(
sysInfo
.
getSysApplication
());
sysAppList
.
addAll
(
sysInfo
.
getSysApplication
());
for
(
SysApplication
sysApp
:
sysAppList
)
{
sysApp
.
setSystemCode
(
sysInfo
.
getSystemCode
());
}
sysConsList
.
addAll
(
sysInfo
.
getSysConstruction
());
sysConsList
.
addAll
(
sysInfo
.
getSysConstruction
());
for
(
SysConstruction
sysCon
:
sysConsList
)
{
sysCon
.
setSystemCode
(
sysInfo
.
getSystemCode
());
}
sysOperList
.
addAll
(
sysInfo
.
getSysOperations
());
sysOperList
.
addAll
(
sysInfo
.
getSysOperations
());
for
(
SysOperations
sysOper
:
sysOperList
)
{
sysOper
.
setSystemCode
(
sysInfo
.
getSystemCode
());
}
}
}
Workbook
workbook
=
new
XSSFWorkbook
();
//创建HSSFWorkbook对象
Workbook
workbook
=
new
XSSFWorkbook
();
//创建HSSFWorkbook对象
this
.
createSysInfoSheetAndFillData
(
workbook
,
sysInfoList
);
this
.
createSysInfoSheetAndFillData
(
workbook
,
sysInfoList
);
...
...
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