package com.sercurityControl.proteam.dutyTask.service; import com.github.pagehelper.PageInfo; import com.sercurityControl.proteam.dutyTask.domain.AbnormalRepDto; import com.sercurityControl.proteam.dutyTask.domain.AbnormalRepVo; import java.util.List; public interface AbnormalRepService { /** * @return com.github.pagehelper.PageInfo * @author cw chen * @description 异常上报统计列表 * @Param dto * @date 2023-06-26 11:04 */ PageInfo getAbnormalRepList(AbnormalRepDto dto); /** * @return java.util.List * @author cw chen * @description 根据id获取异常照片 * @Param id * @date 2023-06-26 16:42 */ List getAbnormalImgById(String id); }