package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbAianalyze;
|
|
/**
|
* <p>
|
* ai视频分析 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-05-16
|
*/
|
public interface TbAianalyzeService extends IService<TbAianalyze> {
|
|
PageInfo<TbAianalyze> findAll(Integer page, Integer limit);
|
|
PageInfo<TbAianalyze> findSearch(Integer page, Integer limit,String incident);
|
|
|
int addAianalyze(TbAianalyze tbAianalyze);
|
|
void deleteAianalyze(Integer id);
|
}
|