huliguo
2025-05-09 bf2f1ffb99634b8350539b28bd9d1f20b30a5aa1
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);
    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);
}