1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| package org.dromara.qa.md.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.dromara.qa.md.domain.CalibrationRecord;
|
| import java.util.List;
|
| /**
| * 校准记录Mapper接口
| *
| * @author ruoyi
| * @date 2026-04-09
| */
| public interface CalibrationRecordMapper extends BaseMapper<CalibrationRecord>
| {
| /**
| * 查询校准记录列表
| *
| * @param record 校准记录
| * @return 校准记录集合
| */
| public List<CalibrationRecord> selectCalibrationRecordList(CalibrationRecord record);
|
| /**
| * 根据目标ID查询校准记录
| *
| * @param targetType 目标类型
| * @param targetId 目标ID
| * @return 校准记录集合
| */
| public List<CalibrationRecord> selectByTargetId(String targetType, Long targetId);
|
| /**
| * 批量插入校准记录
| *
| * @param records 校准记录列表
| * @return 结果
| */
| public int batchInsert(List<CalibrationRecord> records);
| }
|
|