1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.mes.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.mes.entity.PlcAddressMapping;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * PLC地址映射配置Mapper
| *
| * @author zhoush
| * @date 2025/10/30
| */
| @Mapper
| public interface PlcAddressMappingMapper extends BaseMapper<PlcAddressMapping> {
|
| }
|
|