Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
140100c6
Commit
140100c6
authored
Nov 07, 2018
by
Junling Bu
Browse files
fix[litemall-db]: 查询品牌商时过滤已删除
parent
3bd1d039
Changes
1
Hide whitespace changes
Inline
Side-by-side
litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallBrandService.java
View file @
140100c6
...
...
@@ -83,6 +83,8 @@ public class LitemallBrandService {
}
public
List
<
LitemallBrand
>
all
()
{
return
brandMapper
.
selectByExample
(
new
LitemallBrandExample
());
LitemallBrandExample
example
=
new
LitemallBrandExample
();
example
.
or
().
andDeletedEqualTo
(
false
);
return
brandMapper
.
selectByExample
(
example
);
}
}
Write
Preview
Supports
Markdown
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