“djh”
11 hours ago 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.gkhy.exam.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.system.domain.Meetings;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 会议管理 Mapper 接口
 * </p>
 *
 * @author hh
 * @since 2025-07-10 15:11:50
 */
@Mapper
public interface MeetingsMapper extends BaseMapper<Meetings> {
    List<Meetings> selectMeetingsList(@Param("companyId") Integer companyId, @Param("year") String year);
 
}