package com.ruoyi.device.camera.mapper;
|
|
import java.util.List;
|
import com.ruoyi.device.camera.domain.ArdCameraPitchPoint;
|
|
/**
|
* 相机俯仰差值参照点Mapper接口
|
*
|
* @author ard
|
* @date 2024-03-30
|
*/
|
public interface ArdCameraPitchPointMapper
|
{
|
/**
|
* 查询相机俯仰差值参照点
|
*
|
* @param updateBy 相机俯仰差值参照点主键
|
* @return 相机俯仰差值参照点
|
*/
|
public ArdCameraPitchPoint selectArdCameraPitchPointByUpdateBy(String updateBy);
|
|
/**
|
* 查询相机俯仰差值参照点列表
|
*
|
* @param ardCameraPitchPoint 相机俯仰差值参照点
|
* @return 相机俯仰差值参照点集合
|
*/
|
public List<ArdCameraPitchPoint> selectArdCameraPitchPointList(ArdCameraPitchPoint ardCameraPitchPoint);
|
|
/**
|
* 新增相机俯仰差值参照点
|
*
|
* @param ardCameraPitchPoint 相机俯仰差值参照点
|
* @return 结果
|
*/
|
public int insertArdCameraPitchPoint(ArdCameraPitchPoint ardCameraPitchPoint);
|
|
/**
|
* 修改相机俯仰差值参照点
|
*
|
* @param ardCameraPitchPoint 相机俯仰差值参照点
|
* @return 结果
|
*/
|
public int updateArdCameraPitchPoint(ArdCameraPitchPoint ardCameraPitchPoint);
|
|
/**
|
* 删除相机俯仰差值参照点
|
*
|
* @param updateBy 相机俯仰差值参照点主键
|
* @return 结果
|
*/
|
public int deleteArdCameraPitchPointByUpdateBy(String updateBy);
|
|
/**
|
* 批量删除相机俯仰差值参照点
|
*
|
* @param updateBys 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteArdCameraPitchPointByUpdateBys(String[] updateBys);
|
}
|