1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ycl.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ycl.domain.entity.File;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 项目文件关联表 Mapper 接口
| *
| * @author flq
| * @since 2024-11-27
| */
| @Mapper
| public interface FileMapper extends BaseMapper<File> {
|
| /**
| * id查找项目文件关联表
| * @param id
| * @return
| */
| File getById(Integer id);
|
| }
|
|