| | |
| | | |
| | | import com.ycl.entity.caseHandler.Violations; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.entity.video.VideoAlarmReport; |
| | | import com.ycl.vo.cockpit.enforcementEvents.VideoAndAreaVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface IViolationsService extends IService<Violations> { |
| | | |
| | | /** |
| | | * 保存来自视频的报警数据 |
| | | * |
| | | * @param videoAlarmReports |
| | | * @return void |
| | | * @author AI |
| | | * @date 2022-09-26 17:25 |
| | | */ |
| | | void saveFromVideo(List<VideoAlarmReport> videoAlarmReports); |
| | | |
| | | List<VideoAndAreaVO> selectType(); |
| | | } |