We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23a87e4 commit 6306d3bCopy full SHA for 6306d3b
.gitignore
@@ -4,6 +4,7 @@ target/
4
!**/src/main/**
5
!**/src/test/**
6
**/target/
7
+config/
8
9
**.DS_Store
10
src/main/resources/mapper/LogMapper.xml
@@ -32,7 +32,7 @@
32
<select id="searchLogsByUsernameAndKeywordAndRange" resultType="io.github.talelin.latticy.model.LogDO">
33
SELECT l.* FROM lin_log l
34
WHERE l.delete_time IS NULL
35
- <if test="name != null">
+ <if test="name != ''">
36
AND l.username=#{name}
37
</if>
38
<if test="start !=null and end !=null">
0 commit comments