|
@@ -4,8 +4,10 @@ import java.util.List;
|
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
+import org.jeecg.modules.dataVoltage.dto.DataVoltageQueryDTO;
|
|
|
import org.jeecg.modules.dataVoltage.entity.DataVoltage;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import org.jeecg.modules.dataVoltage.vo.DataVoltageVO;
|
|
|
|
|
|
/**
|
|
|
* @Description: ems_data_voltage
|
|
@@ -18,6 +20,12 @@ public interface DataVoltageMapper extends BaseMapper<DataVoltage> {
|
|
|
|
|
|
|
|
|
/**
|
|
|
+ * 参数历史查询
|
|
|
+ */
|
|
|
+ List<DataVoltageVO> dataList(DataVoltageQueryDTO dto);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* 按日期、点位名查询设备实时电压列表
|
|
|
*
|
|
|
* @param voltage 设备实时电压
|