Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gjjs-bd-common
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
s_guodong
gjjs-bd-common
Commits
973a9d15
Commit
973a9d15
authored
Aug 17, 2023
by
吴佳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查询数据行数时才将BigDecimal转为Integer,查询列表数据时不转换
parent
ff6564b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
MyBatisDaoSession.java
...com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
+7
-3
No files found.
gjjs-bd-mybatis-support/src/main/java/com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
View file @
973a9d15
...
@@ -474,9 +474,13 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
...
@@ -474,9 +474,13 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
for
(
int
i
=
0
;
i
<
result
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
result
.
size
();
i
++)
{
Map
<
String
,
Object
>
map1
=
result
.
get
(
i
);
Map
<
String
,
Object
>
map1
=
result
.
get
(
i
);
Set
<
Map
.
Entry
<
String
,
Object
>>
entries
=
map1
.
entrySet
();
Set
<
Map
.
Entry
<
String
,
Object
>>
entries
=
map1
.
entrySet
();
for
(
Map
.
Entry
<
String
,
Object
>
entry
:
entries
)
{
//结果集只有1列数据,切查询语句中包含COUNT 函数名,则判断SQL为查询数据行数
if
(
entry
.
getValue
()
instanceof
BigDecimal
)
{
//将结果集值类型从BigDecimal 转换为Integer
entry
.
setValue
(((
BigDecimal
)
entry
.
getValue
()).
intValue
());
if
(
entries
.
size
()
==
1
&&
sql
.
toUpperCase
().
contains
(
"COUNT"
)){
for
(
Map
.
Entry
<
String
,
Object
>
entry
:
entries
)
{
if
(
entry
.
getValue
()
instanceof
BigDecimal
)
{
entry
.
setValue
(((
BigDecimal
)
entry
.
getValue
()).
intValue
());
}
}
}
}
}
}
}
...
...
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