package com.ruoyi.device.noguidezone.service;
|
|
import java.util.List;
|
import com.ruoyi.device.noguidezone.domain.ArdCameraNoGuideZone;
|
|
/**
|
* 禁引可视域Service接口
|
*
|
* @author ard
|
* @date 2023-10-27
|
*/
|
public interface IArdCameraNoGuideZoneService
|
{
|
/**
|
* 查询禁引可视域
|
*
|
* @param name 禁引可视域主键
|
* @return 禁引可视域
|
*/
|
public ArdCameraNoGuideZone selectArdCameraNoGuideZoneByName(String name);
|
|
/**
|
* 查询禁引可视域列表
|
*
|
* @param ardCameraNoGuideZone 禁引可视域
|
* @return 禁引可视域集合
|
*/
|
public List<ArdCameraNoGuideZone> selectArdCameraNoGuideZoneList(ArdCameraNoGuideZone ardCameraNoGuideZone);
|
|
/**
|
* 新增禁引可视域
|
*
|
* @param ardCameraNoGuideZone 禁引可视域
|
* @return 结果
|
*/
|
public int insertArdCameraNoGuideZone(ArdCameraNoGuideZone ardCameraNoGuideZone);
|
|
/**
|
* 修改禁引可视域
|
*
|
* @param ardCameraNoGuideZone 禁引可视域
|
* @return 结果
|
*/
|
public int updateArdCameraNoGuideZone(ArdCameraNoGuideZone ardCameraNoGuideZone);
|
|
/**
|
* 批量删除禁引可视域
|
*
|
* @param names 需要删除的禁引可视域主键集合
|
* @return 结果
|
*/
|
public int deleteArdCameraNoGuideZoneByNames(String[] names);
|
|
/**
|
* 删除禁引可视域信息
|
*
|
* @param name 禁引可视域主键
|
* @return 结果
|
*/
|
public int deleteArdCameraNoGuideZoneByName(String name);
|
}
|