zhanghua
2022-09-26 22ec70f29b6431d4e773ccf529d82c586edafb23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ycl.service.video;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.dto.video.AlarmParam;
import com.ycl.entity.video.VideoAlarmReport;
 
/**
 * 视频报警推送记录表(UmsVideoAlarmReport)表服务接口
 *
 * @author
 * @since 2022-09-20 17:10:39
 */
public interface IVideoAlarmReportService extends IService<VideoAlarmReport> {
    /**
     * 保存数据
     *
     * @param alarmParam
     * @return void
     * @author AI
     * @date 2022-09-20 17:36
     */
    void save(AlarmParam alarmParam);
 
}