huliguo
2025-05-13 a70919b4f7baab856125f36e5bd41f5ee81be680
src/main/java/com/cl/mapper/DataMapper.java
@@ -7,11 +7,21 @@
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> {
    DataEntity screen(Integer county);
    DataEntity screen( @Param("county") Integer county,@Param("createTime")LocalDateTime createTime);
    IPage<DataVO> pageList(IPage<DataEntity> page, @Param("county") Integer county,@Param("name") String name);
    IPage<DataVO> pageList(IPage<DataEntity> page, @Param("countyList") List<Integer> countyList, @Param("name") String name);
    DataEntity beforeOne(@Param("id") Integer id);
    DataEntity getAddDetail(Integer county);
    List<Integer> getYearList(Integer county);
    Integer getAssistiveDeviceTotal(Integer county, LocalDateTime createTime);
}