- 在pom.xml中添加爱玛电动车测试模块依赖 - 创建爱玛电动车测试模块数据库表结构 - 实现爱玛告警管理相关实体类、控制器、服务类和映射器 - 集成爱玛测试工作流执行监听器 - 完成爱玛告警管理的CRUD操作接口 - 重构TeTaskConfigInfoServiceImpl解决循环依赖问题
61 lines
1.3 KiB
Java
61 lines
1.3 KiB
Java
package com.cmvr.aima.service;
|
|
|
|
import java.util.List;
|
|
import com.cmvr.aima.domain.AimaVehicle;
|
|
|
|
/**
|
|
* 爱玛车辆管理Service接口
|
|
*
|
|
* @author cmvr-iot
|
|
* @since 2026-06-22
|
|
*/
|
|
public interface IAimaVehicleService {
|
|
/**
|
|
* 查询爱玛车辆管理
|
|
*
|
|
* @param id 爱玛车辆管理主键
|
|
* @return 爱玛车辆管理
|
|
*/
|
|
AimaVehicle selectAimaVehicleById(String id);
|
|
|
|
/**
|
|
* 查询爱玛车辆管理列表
|
|
*
|
|
* @param aimaVehicle 爱玛车辆管理
|
|
* @return 爱玛车辆管理集合
|
|
*/
|
|
List<AimaVehicle> selectAimaVehicleList(AimaVehicle aimaVehicle);
|
|
|
|
/**
|
|
* 新增爱玛车辆管理
|
|
*
|
|
* @param aimaVehicle 爱玛车辆管理
|
|
* @return 结果
|
|
*/
|
|
int insertAimaVehicle(AimaVehicle aimaVehicle);
|
|
|
|
/**
|
|
* 修改爱玛车辆管理
|
|
*
|
|
* @param aimaVehicle 爱玛车辆管理
|
|
* @return 结果
|
|
*/
|
|
int updateAimaVehicle(AimaVehicle aimaVehicle);
|
|
|
|
/**
|
|
* 批量删除爱玛车辆管理
|
|
*
|
|
* @param ids 需要删除的爱玛车辆管理主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteAimaVehicleByIds(String[] ids);
|
|
|
|
/**
|
|
* 删除爱玛车辆管理信息
|
|
*
|
|
* @param id 爱玛车辆管理主键
|
|
* @return 结果
|
|
*/
|
|
int deleteAimaVehicleById(String id);
|
|
}
|