Skip to content

Commit

Permalink
添加不与user映射的tag查询的测试方法
Browse files Browse the repository at this point in the history
  • Loading branch information
suvvm committed Nov 26, 2019
1 parent 8f095a9 commit ceb84a9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ public void selectCmp() {
public void selectTag() {
Tag t = new Tag();
// t.setId(400000001);
t.setName("秃头");
List<Tag> tags = tagMapper.selectTags(t);
List<Tag> tags = tagMapper.selectTagsWithoutUser(t);
for(Tag tag : tags){
System.out.println(tag.toString());
}
Expand Down

0 comments on commit ceb84a9

Please sign in to comment.