Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
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
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
56700dd6
Commit
56700dd6
authored
Jun 11, 2021
by
liuxinben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
公安网反馈下载 修改联系方式位置
parent
5c321717
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
ExportExcel.java
src/main/java/com/yxproject/start/utils/ExportExcel.java
+18
-18
No files found.
src/main/java/com/yxproject/start/utils/ExportExcel.java
View file @
56700dd6
...
...
@@ -70,23 +70,23 @@ public class ExportExcel {
cell
=
row
.
createCell
(
6
);
//设定值
cell
.
setCellValue
(
"身份证号"
);
cell
=
row
.
createCell
(
7
);
//设定值
cell
.
setCellValue
(
"联系方式"
);
cell
=
row
.
createCell
(
8
);
//设定值
cell
.
setCellValue
(
"条形码号"
);
cell
=
row
.
createCell
(
9
);
//设定值
cell
=
row
.
createCell
(
8
);
//设定值
cell
.
setCellValue
(
"签发机关"
);
cell
=
row
.
createCell
(
10
);
//设定值
cell
=
row
.
createCell
(
9
);
//设定值
cell
.
setCellValue
(
"运单号"
);
cell
=
row
.
createCell
(
1
1
);
//设定值
cell
=
row
.
createCell
(
1
0
);
//设定值
cell
.
setCellValue
(
"制证类型"
);
cell
=
row
.
createCell
(
1
2
);
//设定值
cell
=
row
.
createCell
(
1
1
);
//设定值
cell
.
setCellValue
(
"原制证类型"
);
cell
=
row
.
createCell
(
1
3
);
//设定值
cell
=
row
.
createCell
(
1
2
);
//设定值
cell
.
setCellValue
(
"复核日期"
);
cell
=
row
.
createCell
(
1
4
);
//设定值
cell
=
row
.
createCell
(
1
3
);
//设定值
cell
.
setCellValue
(
"复核人"
);
cell
=
row
.
createCell
(
1
5
);
//设定值
cell
=
row
.
createCell
(
1
4
);
//设定值
cell
.
setCellValue
(
"备注"
);
cell
=
row
.
createCell
(
15
);
//设定值
cell
.
setCellValue
(
"联系方式"
);
for
(
int
i
=
0
;
i
<
mapList
.
size
();
i
++){
row
=
sheet
.
createRow
(
i
+
1
);
...
...
@@ -105,23 +105,23 @@ public class ExportExcel {
cell
=
row
.
createCell
(
6
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"CARD_ID"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"CARD_ID"
)+
""
);
cell
=
row
.
createCell
(
7
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"APPLY_PHONE"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"APPLY_PHONE"
)+
""
);
cell
=
row
.
createCell
(
8
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"QR_CODE"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"QR_CODE"
)+
""
);
cell
=
row
.
createCell
(
9
);
//设定值
cell
=
row
.
createCell
(
8
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"SIGN_GOVT"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"SIGN_GOVT"
)+
""
);
cell
=
row
.
createCell
(
10
);
//设定值
cell
=
row
.
createCell
(
9
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"WAYBILL_NUMBER"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"WAYBILL_NUMBER"
)+
""
);
cell
=
row
.
createCell
(
1
1
);
//设定值
cell
=
row
.
createCell
(
1
0
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"CARD_TYPE_ID"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"CARD_TYPE_ID"
)+
""
);
cell
=
row
.
createCell
(
1
2
);
//设定值
cell
=
row
.
createCell
(
1
1
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"OLD_CARD_TYPE_ID"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"OLD_CARD_TYPE_ID"
)+
""
);
cell
=
row
.
createCell
(
1
3
);
//设定值
cell
=
row
.
createCell
(
1
2
);
//设定值
cell
.
setCellValue
(
mapList
.
get
(
i
).
get
(
"CHECK_DATE"
)+
""
);
cell
=
row
.
createCell
(
1
4
);
//设定值
cell
=
row
.
createCell
(
1
3
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"CHECK_NAME"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"CHECK_NAME"
)+
""
);
cell
=
row
.
createCell
(
1
5
);
//设定值
cell
=
row
.
createCell
(
1
4
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"NOTE"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"NOTE"
)+
""
);
cell
=
row
.
createCell
(
15
);
//设定值
cell
.
setCellValue
(
"null"
.
equals
(
mapList
.
get
(
i
).
get
(
"APPLY_PHONE"
)+
""
)?
""
:
mapList
.
get
(
i
).
get
(
"APPLY_PHONE"
)+
""
);
}
...
...
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