package com.cl.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.cl.pojo.entity.DataEntity; import com.cl.pojo.vo.DataVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.time.LocalDateTime; import java.util.Date; import java.util.List; @Mapper public interface DataMapper extends BaseMapper { DataEntity screen( @Param("county") Integer county,@Param("createTime")LocalDateTime createTime); IPage pageList(IPage page, @Param("countyList") List countyList, @Param("name") String name); DataEntity beforeOne(@Param("id") Integer id); DataEntity getAddDetail(Integer county); List getYearList(Integer county); Integer getAssistiveDeviceTotal(Integer county, LocalDateTime createTime); }