|
@@ -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
|
|