29 lines
841 B
Plaintext
29 lines
841 B
Plaintext
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<com.sercurityControl.proteam.dutyTask.domain.AbnormalRepVo>
|
|
* @author cw chen
|
|
* @description 异常上报统计列表
|
|
* @Param dto
|
|
* @date 2023-06-26 11:06
|
|
*/
|
|
List<AbnormalRepVo> getAbnormalRepList(AbnormalRepDto dto);
|
|
|
|
/**
|
|
* @return int
|
|
* @author cw chen
|
|
* @description 根据id查找异常上报照片
|
|
* @Param id
|
|
* @date 2023-06-26 14:46
|
|
*/
|
|
List<String> getAbnormalRepImgById(String id);
|
|
}
|