zf
2023-09-25 c858ae26143fde37b8c77d403baeb7a050bc2ab6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.gkhy.exam.noncoalmine.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.noncoalmine.entity.NcStaff;
import com.gkhy.exam.noncoalmine.model.query.NcStaffQuery;
import com.gkhy.exam.noncoalmine.model.vo.NcStaffVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * (NcStaff)表数据库访问层
 *
 * @author makejava
 * @since 2023-09-18 09:59:58
 */
@Repository
@Mapper
public interface NcStaffMapper extends BaseMapper<NcStaff> {
 
    List<NcStaffVO> getList(@Param("query") NcStaffQuery query);
}