Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
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
base_platform_enterprise
gic-platform-auth
Commits
d8ce25f6
Commit
d8ce25f6
authored
Sep 22, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pmd
parent
861e9bb2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
TabSysMenuMapper.java
...c/main/java/com/gic/auth/dao/mapper/TabSysMenuMapper.java
+0
-1
ExcelUtils.java
...-web/src/main/java/com/gic/auth/web/utils/ExcelUtils.java
+4
-4
No files found.
gic-platform-auth-service/src/main/java/com/gic/auth/dao/mapper/TabSysMenuMapper.java
View file @
d8ce25f6
...
@@ -192,7 +192,6 @@ public interface TabSysMenuMapper {
...
@@ -192,7 +192,6 @@ public interface TabSysMenuMapper {
* @return java.util.List<com.gic.auth.entity.TabSysMenu>
* @return java.util.List<com.gic.auth.entity.TabSysMenu>
* @throws
* @throws
*/
*/
@Deprecated
List
<
TabSysMenu
>
selectByProjectList
(
@Param
(
"projectList"
)
List
<
String
>
projectList
);
List
<
TabSysMenu
>
selectByProjectList
(
@Param
(
"projectList"
)
List
<
String
>
projectList
);
/**
/**
...
...
gic-platform-auth-web/src/main/java/com/gic/auth/web/utils/ExcelUtils.java
View file @
d8ce25f6
...
@@ -153,16 +153,16 @@ public class ExcelUtils {
...
@@ -153,16 +153,16 @@ public class ExcelUtils {
Boolean
isDate
=
dateTypeMap
.
get
(
colix
);
Boolean
isDate
=
dateTypeMap
.
get
(
colix
);
if
(
isDate
!=
null
&&
isDate
)
{
if
(
isDate
!=
null
&&
isDate
)
{
if
(
xssfCell
.
getCellType
()
==
Cell
.
CELL_TYPE_
NUMERIC
)
{
if
(
xssfCell
.
getCellType
Enum
()
==
CellType
.
NUMERIC
)
{
Date
date
=
xssfCell
.
getDateCellValue
();
Date
date
=
xssfCell
.
getDateCellValue
();
map
.
put
(
colix
,
format
.
format
(
date
));
map
.
put
(
colix
,
format
.
format
(
date
));
}
else
{
}
else
{
xssfCell
.
setCellType
(
Cell
.
CELL_TYPE_
STRING
);
xssfCell
.
setCellType
(
Cell
Type
.
STRING
);
map
.
put
(
colix
,
xssfCell
.
getStringCellValue
());
map
.
put
(
colix
,
xssfCell
.
getStringCellValue
());
}
}
}
else
{
}
else
{
if
(
xssfCell
.
getCellType
()
!=
Cell
.
CELL_TYPE_
STRING
)
{
if
(
xssfCell
.
getCellType
Enum
()
!=
CellType
.
STRING
)
{
xssfCell
.
setCellType
(
Cell
.
CELL_TYPE_
STRING
);
xssfCell
.
setCellType
(
Cell
Type
.
STRING
);
}
}
map
.
put
(
colix
,
xssfCell
.
getStringCellValue
());
map
.
put
(
colix
,
xssfCell
.
getStringCellValue
());
}
}
...
...
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