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
609409f8
Commit
609409f8
authored
Aug 14, 2023
by
s_guodong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bigDecimal转int
parent
96a4bb21
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
MyBatisDaoSession.java
...com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
+6
-2
No files found.
gjjs-bd-mybatis-support/src/main/java/com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
View file @
609409f8
...
...
@@ -21,6 +21,7 @@ import org.springframework.stereotype.Component;
import
java.io.Serializable
;
import
java.lang.reflect.InvocationTargetException
;
import
java.math.BigDecimal
;
import
java.sql.SQLException
;
import
java.util.*
;
...
...
@@ -359,8 +360,11 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
}
for
(
int
i
=
0
;
i
<
result
.
size
();
i
++)
{
Map
<
String
,
Object
>
map1
=
result
.
get
(
i
);
if
(
map1
.
get
(
"COUNT"
)
!=
null
)
{
map1
.
put
(
"COUNT"
,
Integer
.
valueOf
(
map1
.
get
(
"COUNT"
)
+
""
));
Set
<
Map
.
Entry
<
String
,
Object
>>
entries
=
map1
.
entrySet
();
for
(
Map
.
Entry
<
String
,
Object
>
entry
:
entries
)
{
if
(
entry
.
getValue
()
instanceof
BigDecimal
)
{
entry
.
setValue
(((
BigDecimal
)
entry
.
getValue
()).
intValue
());
}
}
}
resultLocal
.
set
(
new
ResultSet
(
result
));
...
...
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