package com.hxzk.gps.service.Video;
|
|
import com.hxzk.gps.controller.Video.dto.TableSearchResult.TableVideoSearchResult;
|
import com.hxzk.gps.dto.TableSearchResult.TableSearchResult;
|
import com.hxzk.gps.entity.Tag.TbTag;
|
import com.hxzk.gps.entity.Video.TbHksxt;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.hxzk.gps.result.ResultTable;
|
import com.hxzk.gps.util.Result.ReturnMessage;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-07-01
|
*/
|
public interface TbHksxtService extends IService<TbHksxt> {
|
|
/*
|
* 操作日志列表查询接口
|
* @param TableSearchResult
|
* @return ResultTable
|
* */
|
ResultTable FindVideoInfo(@RequestBody TableVideoSearchResult tableVideoSearchResult);
|
|
/*
|
* 新增监控
|
* @param TbHksxt 监控信息
|
* @return 结果信息
|
* */
|
ReturnMessage add(TbHksxt hksxt);
|
|
/*
|
* 修改监控
|
* @param TbHksxt 监控信息
|
* @return 结果信息
|
* */
|
ReturnMessage update(TbHksxt hksxt);
|
|
/*
|
* 删除监控
|
* @param TbHksxt 监控信息
|
* @return 结果信息
|
* */
|
ReturnMessage delete(TbHksxt hksxt);
|
|
}
|