Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
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
guns-vip
Commits
f904e3dc
Commit
f904e3dc
authored
Jun 05, 2017
by
naan1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复sql中含有关键字导致druid监控不可启用的bug
parent
e3351318
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
src/main/java/com/stylefeng/guns/common/node/ZTreeNode.java
+8
-0
src/main/java/com/stylefeng/guns/modular/system/dao/mapping/DeptDao.xml
+1
-1
src/main/java/com/stylefeng/guns/modular/system/dao/mapping/MenuDao.xml
+2
-2
No files found.
src/main/java/com/stylefeng/guns/common/node/ZTreeNode.java
View file @
f904e3dc
...
...
@@ -51,6 +51,14 @@ public class ZTreeNode {
this
.
open
=
open
;
}
public
Boolean
getIsOpen
()
{
return
open
;
}
public
void
setIsOpen
(
Boolean
open
)
{
this
.
open
=
open
;
}
public
Boolean
getChecked
()
{
return
checked
;
}
...
...
src/main/java/com/stylefeng/guns/modular/system/dao/mapping/DeptDao.xml
View file @
f904e3dc
...
...
@@ -11,7 +11,7 @@
ELSE
'false'
END
) as
o
pen from dept
) as
isO
pen from dept
</select>
<select
id=
"list"
resultType=
"map"
>
...
...
src/main/java/com/stylefeng/guns/modular/system/dao/mapping/MenuDao.xml
View file @
f904e3dc
...
...
@@ -46,7 +46,7 @@
ELSE
'false'
END
) as
o
pen
) as
isO
pen
FROM
menu m1
LEFT JOIN menu m2 ON m1.pcode = m2. CODE
...
...
@@ -74,7 +74,7 @@
ELSE
'false'
END
) as
o
pen,
) as
isO
pen,
(
CASE
WHEN (m3.ID = 0 OR m3.ID
...
...
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