zhanghua
2024-09-05 a4cd4c2d98392cd1036f36b96c262878743a7e63
ycl-platform/src/main/java/com/ycl/mapper/caseHandler/DisposeRecordMapper.java
@@ -6,6 +6,7 @@
import com.ycl.vo.MyBacklogVO;
import org.apache.ibatis.annotations.Param;
import java.time.LocalDateTime;
import java.util.List;
/**
@@ -18,5 +19,14 @@
 */
public interface DisposeRecordMapper extends BaseMapper<DisposeRecord> {
    Page<MyBacklogVO> selectMyBackList(Page<MyBacklogVO> page, @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);
}