zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.OperationInstruction;
import com.yuanchu.mom.vo.OperationInstructionVo;
 
import java.util.List;
 
/**
 * <p>
 * 设备 - 作业指导书 添加受控文件 子 Mapper 接口
 * </p>
 *
 * @author 
 * @since 2024-12-04 10:43:32
 */
public interface OperationInstructionMapper extends BaseMapper<OperationInstruction> {
 
    List<OperationInstructionVo> homeworkGuidebookEditor(Integer instructionId);
}