mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
新增 相机管理后管页面
This commit is contained in:
@@ -6,7 +6,7 @@ import com.jsowell.pile.domain.PileCameraInfo;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
* 车位相机信息Mapper接口
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-12-09
|
||||
@@ -14,47 +14,47 @@ import org.springframework.stereotype.Repository;
|
||||
@Repository
|
||||
public interface PileCameraInfoMapper {
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
* 查询车位相机信息
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 【请填写功能名称】
|
||||
* @param id 车位相机信息主键
|
||||
* @return 车位相机信息
|
||||
*/
|
||||
public PileCameraInfo selectPileCameraInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】列表
|
||||
* 查询车位相机信息列表
|
||||
*
|
||||
* @param pileCameraInfo 【请填写功能名称】
|
||||
* @return 【请填写功能名称】集合
|
||||
* @param pileCameraInfo 车位相机信息
|
||||
* @return 车位相机信息集合
|
||||
*/
|
||||
public List<PileCameraInfo> selectPileCameraInfoList(PileCameraInfo pileCameraInfo);
|
||||
|
||||
/**
|
||||
* 新增【请填写功能名称】
|
||||
* 新增车位相机信息
|
||||
*
|
||||
* @param pileCameraInfo 【请填写功能名称】
|
||||
* @param pileCameraInfo 车位相机信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertPileCameraInfo(PileCameraInfo pileCameraInfo);
|
||||
|
||||
/**
|
||||
* 修改【请填写功能名称】
|
||||
* 修改车位相机信息
|
||||
*
|
||||
* @param pileCameraInfo 【请填写功能名称】
|
||||
* @param pileCameraInfo 车位相机信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updatePileCameraInfo(PileCameraInfo pileCameraInfo);
|
||||
|
||||
/**
|
||||
* 删除【请填写功能名称】
|
||||
* 删除车位相机信息
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @param id 车位相机信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileCameraInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除【请填写功能名称】
|
||||
* 批量删除车位相机信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
|
||||
Reference in New Issue
Block a user