1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package org.dromara.qa.md.mapper;
|
| import org.dromara.qa.md.domain.MdInstrument;
| import org.dromara.qa.md.domain.vo.MdInstrumentVo;
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
| /**
| * 测量仪器Mapper接口
| *
| * @author zhuguifei
| * @date 2026-03-18
| */
| public interface MdInstrumentMapper extends BaseMapperPlus<MdInstrument, MdInstrumentVo> {
|
| }
|
|