新增 相机管理后管页面

This commit is contained in:
Lemon
2023-12-11 10:59:54 +08:00
parent a98a36f04f
commit 8edd3013a7
6 changed files with 468 additions and 63 deletions

View File

@@ -10,7 +10,7 @@ import com.jsowell.pile.domain.PileCameraInfo;
import com.jsowell.pile.service.IPileCameraInfoService;
/**
* 【请填写功能名称】Service业务层处理
* 车位相机信息Service业务层处理
*
* @author jsowell
* @date 2023-12-09
@@ -21,10 +21,10 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
private PileCameraInfoMapper pileCameraInfoMapper;
/**
* 查询【请填写功能名称】
* 查询车位相机信息
*
* @param id 【请填写功能名称】主键
* @return 【请填写功能名称】
* @param id 车位相机信息主键
* @return 车位相机信息
*/
@Override
public PileCameraInfo selectPileCameraInfoById(Long id) {
@@ -32,10 +32,10 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
}
/**
* 查询【请填写功能名称】列表
* 查询车位相机信息列表
*
* @param pileCameraInfo 【请填写功能名称】
* @return 【请填写功能名称】
* @param pileCameraInfo 车位相机信息
* @return 车位相机信息
*/
@Override
public List<PileCameraInfo> selectPileCameraInfoList(PileCameraInfo pileCameraInfo) {
@@ -43,9 +43,9 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
}
/**
* 新增【请填写功能名称】
* 新增车位相机信息
*
* @param pileCameraInfo 【请填写功能名称】
* @param pileCameraInfo 车位相机信息
* @return 结果
*/
@Override
@@ -55,9 +55,9 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
}
/**
* 修改【请填写功能名称】
* 修改车位相机信息
*
* @param pileCameraInfo 【请填写功能名称】
* @param pileCameraInfo 车位相机信息
* @return 结果
*/
@Override
@@ -66,9 +66,9 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
}
/**
* 批量删除【请填写功能名称】
* 批量删除车位相机信息
*
* @param ids 需要删除的【请填写功能名称】主键
* @param ids 需要删除的车位相机信息主键
* @return 结果
*/
@Override
@@ -77,9 +77,9 @@ public class PileCameraInfoServiceImpl implements IPileCameraInfoService {
}
/**
* 删除【请填写功能名称】信息
* 删除车位相机信息信息
*
* @param id 【请填写功能名称】主键
* @param id 车位相机信息主键
* @return 结果
*/
@Override