| | |
| | | package com.ycl.mapper.caseHandler; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ycl.entity.caseHandler.DisposeRecord; |
| | | import com.ycl.vo.MyBacklogVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface DisposeRecordMapper extends BaseMapper<DisposeRecord> { |
| | | |
| | | List<MyBacklogVO> selectMyBackList(@Param("id") Long id, @Param("code") String code); |
| | | List<MyBacklogVO> selectMyBackList(@Param("id") Long id, @Param("code") String code, |
| | | @Param("alarmTimeStart") LocalDateTime alarmTimeStart, |
| | | @Param("alarmTimeEnd") LocalDateTime alarmTimeEnd, |
| | | @Param("source") Short source, @Param("type") Short type, |
| | | @Param("pageIndex") Integer pageIndex, @Param("pageSize") Integer pageSize); |
| | | |
| | | Long selectMyBackListTotal(@Param("id") Long id, @Param("code") String code, |
| | | @Param("alarmTimeStart") LocalDateTime alarmTimeStart, |
| | | @Param("alarmTimeEnd") LocalDateTime alarmTimeEnd, |
| | | @Param("source") Short source, @Param("type") Short type); |
| | | } |