青羊经侦大队-数据平台
baizonghao
2023-05-19 1c3f11dfd7493a4c4a8d41e2499477840bcc070c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.jz.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.jz.modle.entity.GroupUser;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 用户和群中间表(GroupUser)表数据库访问层
 *
 * @author makejava
 * @since 2022-07-11 16:35:57
 */
@Mapper
public interface GroupUserDao extends BaseMapper<GroupUser> {
 
    List<Integer> selectUserList(Integer id);
}