1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package org.jeecg.modules.mdc.mapper;
|
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Select;
| import org.springframework.stereotype.Repository;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * @author: LiuS
| * @create: 2023-04-07 14:57
| */
| @Mapper
| @Repository
| public interface EquipmentTemperatureMapper {
| }
|
|