package com.casic.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.casic.model.DataPressure; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Date; @Mapper public interface DataPressureMapper extends BaseMapper<DataPressure> { String getWellCode(@Param("devcode") String devcode); Float getRuleValue(@Param("deviceType") String deviceType); void saveRecords(@Param("reValue") String reValue, @Param("alarmTime") Date alarmTime); }