zhuo
2025-03-15 500b831eb1153e9ba04fbffefa8fdfdfa080316c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.device.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.device.dto.DeviceOperationInstructionDto;
import com.ruoyi.device.pojo.OperationInstruction;
 
import java.util.List;
 
/**
 * <p>
 * 设备 - 作业指导书 添加受控文件 子 Mapper 接口
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-12-04 10:43:32
 */
public interface OperationInstructionMapper extends BaseMapper<OperationInstruction> {
 
    List<DeviceOperationInstructionDto> homeworkGuidebookEditor(Integer instructionId);
}