src/main/java/com/example/jz/dao/GroupUserDao.java
@@ -4,6 +4,8 @@ import com.example.jz.modle.entity.GroupUser; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 用户和群中间表(GroupUser)表数据库访问层 * @@ -13,4 +15,5 @@ @Mapper public interface GroupUserDao extends BaseMapper<GroupUser> { List<Integer> selectUserList(Integer id); }