青羊经侦大队-数据平台
安瑾然
2022-07-14 5b04d19edea32888efa9ee4881395a21da348e3f
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);
}