张延森 4 år sedan
förälder
incheckning
f3f7c0433e
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      src/main/java/com/shigongli/controller/TaMateTagController.java

+ 1
- 1
src/main/java/com/shigongli/controller/TaMateTagController.java Visa fil

@@ -57,7 +57,7 @@ public class TaMateTagController extends BaseController {
57 57
 
58 58
 		    IPage<TaMateTag> pg = new Page<>(pageNum, pageSize);
59 59
             QueryWrapper<TaMateTag> queryWrapper = new QueryWrapper<>();
60
-            queryWrapper.eq(!StringUtils.isEmpty(groupId), "groupId", groupId);
60
+            queryWrapper.eq(!StringUtils.isEmpty(groupId), "group_id", groupId);
61 61
             queryWrapper.eq("status", StatusConstant.NORMAL);
62 62
             queryWrapper.orderByDesc("create_date");
63 63