src/main/java/com/example/jz/dao/GroupDao.java
@@ -2,6 +2,11 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.example.jz.modle.entity.Group; import com.example.jz.modle.vo.GroupUserVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 群表 @@ -10,6 +15,9 @@ * @author makejava * @since 2022-07-11 16:35:57 */ @Mapper public interface GroupDao extends BaseMapper<Group> { List<GroupUserVo> getAllUser(@Param("groupId") Integer id); }