| | |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.mdc.entity.Equipment; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 采集设备表 |
| | | * @Author: liuS |
| | |
| | | |
| | | @Insert(" SELECT * INTO ${tableName} FROM ${lastTableName} WHERE CollectTime < '${date}' ") |
| | | void insertNoTableData(@Param("tableName") String tableName, @Param("lastTableName") String lastTableName, @Param("date") String date); |
| | | |
| | | List<Equipment> listByProds(@Param("proIds") List<String> proIds); |
| | | |
| | | Equipment findByEquId(@Param("equipmentId") String equipmentId); |
| | | } |