package com.gunshi.project.hsz.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.hsz.entity.vo.HomeOsmoticPressDeviceVo; import com.gunshi.project.hsz.model.OsmoticPressDevice; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.List; /** * 描述: 渗压设备表 * author: xusan * date: 2024-07-08 15:44:07 */ @Mapper public interface OsmoticPressDeviceMapper extends BaseMapper { @Select(""" """) List getDetailsAndMonitoringDataList(); }