package com.xcgl.middleware.dao; import org.jeecgframework.minidao.annotation.MiniDao; import org.jeecgframework.minidao.annotation.Param; import com.xcgl.cloud.entity.TSProject; import com.xcgl.device.entity.DeviceEntity; import com.xcgl.devicetype.entity.DeviceTypeEntity; import com.xcgl.sensormonitorpoint.entity.SensorMonitorPointEntity; import com.xcgl.sensortype.entity.SensorTypeEntity; @MiniDao public interface MiddlewareSyncDao { void insertDeviceType(@Param("devicetype") DeviceTypeEntity devicetype); void insertDevice(@Param("device") DeviceEntity device); void insertSensorType(@Param("sensortype") SensorTypeEntity sensortype); void insertSensor(@Param("sensorpoint") SensorMonitorPointEntity sensorpoint); void insertProject(@Param("project") TSProject project); }