Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
property-management
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
property-management
Commits
365810d4
Commit
365810d4
authored
Jan 13, 2020
by
zhangdaihao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
字典排序问题合并
parent
ed831350
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
.gitignore
+10
-0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/mapper/SysDictItemMapper.java
+1
-1
No files found.
.gitignore
0 → 100644
View file @
365810d4
## ide
**/.idea
*.iml
## backend
**/target
**/logs
## front
**/*.lock
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/mapper/SysDictItemMapper.java
View file @
365810d4
...
@@ -15,6 +15,6 @@ import java.util.List;
...
@@ -15,6 +15,6 @@ import java.util.List;
* @since 2018-12-28
* @since 2018-12-28
*/
*/
public
interface
SysDictItemMapper
extends
BaseMapper
<
SysDictItem
>
{
public
interface
SysDictItemMapper
extends
BaseMapper
<
SysDictItem
>
{
@Select
(
"SELECT * FROM
SYS_DICT_ITEM WHERE DICT_ID = #{mainId}
"
)
@Select
(
"SELECT * FROM
sys_dict_item WHERE DICT_ID = #{mainId} order by sort_order asc, item_value asc
"
)
public
List
<
SysDictItem
>
selectItemsByMainId
(
String
mainId
);
public
List
<
SysDictItem
>
selectItemsByMainId
(
String
mainId
);
}
}
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