heheng
3 天以前 f33cfe86447c16df8ca665e2e1a5f3333ff57792
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.OutProjectExpert;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 项目专家关联表 Mapper 接口
 * </p>
 *
 * @author hh
 * @since 2025-08-26 13:11:13
 */
@Mapper
public interface OutProjectExpertMapper extends BaseMapper<OutProjectExpert> {
 
}