package com.gunshi.project.hsz.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.hsz.entity.vo.HomeOsmoticFlowDeviceVo; import com.gunshi.project.hsz.model.OsmoticFlowDevice; 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 OsmoticFlowDeviceMapper extends BaseMapper { @Select(""" """) List getDetailsAndMonitoringDataList(); }