package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.xyt.entity.so.CommonDataPageSo; import com.gunshi.project.xyt.entity.vo.ProjectEventsVo; import com.gunshi.project.xyt.model.ProjectEvents; import com.gunshi.project.xyt.model.TermiteSurvey; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface ProjectEventsMapper extends BaseMapper { @Select(""" """) List eventList(@Param("obj") CommonDataPageSo page); @Select(""" """) List maintainList(@Param("obj") CommonDataPageSo page); @Select(""" """) List safetyList(@Param("obj") CommonDataPageSo page); @Select(""" """) List reinforceList(@Param("obj") CommonDataPageSo page); @Select(""" """) List termiteList(@Param("obj") CommonDataPageSo page); @Select(""" """) List queryTermiteDetail(@Param("id") Long id); }