| | |
| | | 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); |
| | | } |