Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jeecg-boot
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
jeecg-boot
Commits
3bd6afd1
Unverified
Commit
3bd6afd1
authored
Jul 29, 2019
by
scott
Committed by
GitHub
Jul 29, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #359 from klniu/master
修复updateBatchById的org.apache.ibatis.binding.BindingException: Paramet…
parents
b73eeffc
2a992551
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/config/mybatis/MybatisInterceptor.java
+4
-0
No files found.
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/config/mybatis/MybatisInterceptor.java
View file @
3bd6afd1
...
...
@@ -106,7 +106,11 @@ public class MybatisInterceptor implements Interceptor {
Field
[]
fields
=
null
;
if
(
parameter
instanceof
ParamMap
)
{
ParamMap
<?>
p
=
(
ParamMap
<?>)
parameter
;
if
(
p
.
containsKey
(
"et"
))
{
parameter
=
p
.
get
(
"et"
);
}
else
{
parameter
=
p
.
get
(
"param1"
);
}
fields
=
oConvertUtils
.
getAllFields
(
parameter
);
}
else
{
fields
=
oConvertUtils
.
getAllFields
(
parameter
);
...
...
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