1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.gkhy.system.mapper;
|
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.gkhy.system.domain.OutProjectExpertDetail;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * <p>
| * 项目专家得分明细表 Mapper 接口
| * </p>
| *
| * @author hh
| * @since 2025-08-26 13:11:13
| */
| @Mapper
| public interface OutProjectExpertDetailMapper extends BaseMapper<OutProjectExpertDetail> {
|
| }
|
|