fix: 物联网平台,amqp数据接入并插入TD数据库相关逻辑编码。
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.intc.iot.domain.AquAlarmHistory;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 告警历史记录 Mapper
|
||||
*
|
||||
* @author intc
|
||||
*/
|
||||
@Mapper
|
||||
public interface AquAlarmHistoryMapper extends BaseMapper<AquAlarmHistory> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.intc.iot.domain.AquWarnCallNotice;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 告警电话通知记录 Mapper
|
||||
*
|
||||
* @author intc-iot
|
||||
*/
|
||||
@Mapper
|
||||
public interface AquWarnCallNoticeMapper extends BaseMapper<AquWarnCallNotice> {
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.intc.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
import com.intc.iot.domain.DeviceRealtimeData;
|
||||
import com.intc.iot.domain.vo.DeviceRealtimeDataVo;
|
||||
|
||||
/**
|
||||
* 设备实时数据Mapper接口
|
||||
*
|
||||
* @author intc
|
||||
*/
|
||||
public interface DeviceRealtimeDataMapper extends BaseMapperPlus<DeviceRealtimeData, DeviceRealtimeDataVo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.intc.iot.domain.IotDevice;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* IoT设备 Mapper
|
||||
*
|
||||
* @author intc
|
||||
*/
|
||||
@Mapper
|
||||
public interface IotDeviceMapper extends BaseMapper<IotDevice> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.intc.iot.domain.IotDeviceStatus;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 设备上下线状态 Mapper
|
||||
*
|
||||
* @author intc-iot
|
||||
*/
|
||||
@Mapper
|
||||
public interface IotDeviceStatusMapper extends BaseMapper<IotDeviceStatus> {
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.intc.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.intc.iot.domain.VmsCallback;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* VMS 语音回执 Mapper
|
||||
*
|
||||
* @author intc-iot
|
||||
*/
|
||||
@Mapper
|
||||
public interface VmsCallbackMapper extends BaseMapper<VmsCallback> {
|
||||
}
|
||||
Reference in New Issue
Block a user