package com.sercurityControl.proteam.dutyTask.mapper; import com.sercurityControl.proteam.dutyTask.domain.AbnormalRepDto; import com.sercurityControl.proteam.dutyTask.domain.AbnormalRepVo; import org.springframework.stereotype.Repository; import java.util.List; @Repository(value = "AbnormalRepMapper") public interface AbnormalRepMapper { /** * @return java.util.List * @author cw chen * @description 异常上报统计列表 * @Param dto * @date 2023-06-26 11:06 */ List getAbnormalRepList(AbnormalRepDto dto); /** * @return int * @author cw chen * @description 根据id查找异常上报照片 * @Param id * @date 2023-06-26 14:46 */ List getAbnormalRepImgById(String id); }