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