package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.xyt.entity.vo.HomeShpPlacementVo; import com.gunshi.project.xyt.model.ShpPlacement; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.List; /** * 描述: 安置点 * author: xusan * date: 2024-07-08 15:44:08 */ @Mapper public interface ShpPlacementMapper extends BaseMapper { @Select(""" """) List getDetailsAndMonitoringDataList(); }