1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.safe.service;
|
| import com.ruoyi.safe.pojo.SafeLineInspectionRecord;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| import java.util.List;
|
| /**
| * <p>
| * 安全生产--线路巡检记录 服务类
| * </p>
| *
| * @author 芯导软件(江苏)有限公司
| * @since 2026-06-29
| */
| public interface SafeLineInspectionRecordService extends IService<SafeLineInspectionRecord> {
|
| List<SafeLineInspectionRecord> listByInspectionId(Integer inspectionId);
| }
|
|