29 lines
832 B
Plaintext
29 lines
832 B
Plaintext
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<com.sercurityControl.proteam.dutyTask.domain.AbnormalRepVo>
|
|
* @author cw chen
|
|
* @description 异常上报统计列表
|
|
* @Param dto
|
|
* @date 2023-06-26 11:04
|
|
*/
|
|
PageInfo<AbnormalRepVo> getAbnormalRepList(AbnormalRepDto dto);
|
|
|
|
/**
|
|
* @return java.util.List<java.lang.String>
|
|
* @author cw chen
|
|
* @description 根据id获取异常照片
|
|
* @Param id
|
|
* @date 2023-06-26 16:42
|
|
*/
|
|
List<String> getAbnormalImgById(String id);
|
|
}
|