You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.2 KiB
60 lines
1.2 KiB
package com.zc.business.mapper;
|
|
|
|
|
|
import com.zc.business.domain.DcExecuteAction;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 执行操作Mapper接口
|
|
*
|
|
* @author wangjiabao
|
|
* @date 2024-02-21
|
|
*/
|
|
public interface DcExecuteActionMapper {
|
|
|
|
|
|
/**
|
|
* 批量新增执行操作
|
|
*
|
|
* @param dcExecuteActionList 执行操作
|
|
* @return 结果
|
|
*/
|
|
int insertDcExecuteActionBatch(List<DcExecuteAction> dcExecuteActionList);
|
|
|
|
/**
|
|
* 批量修改执行操作
|
|
*
|
|
* @param dcExecuteActionList 执行操作
|
|
* @return 结果
|
|
*/
|
|
int updateDcExecuteActionBatch(List<DcExecuteAction> dcExecuteActionList);
|
|
|
|
/**
|
|
* 批量删除执行操作
|
|
*
|
|
* @param ids 执行操作
|
|
* @return 结果
|
|
*/
|
|
int deleteDcExecuteActionByEmergencyPlansId(String[] ids);
|
|
|
|
/**
|
|
* 批量删除执行操作
|
|
*
|
|
* @param ids 执行操作
|
|
* @return 结果
|
|
*/
|
|
int deleteDcExecuteAction(List<String> ids);
|
|
|
|
/**
|
|
* 根据事件预案id查询执行操作
|
|
*
|
|
* @param emergencyPlansId 执行操作
|
|
* @return 结果
|
|
*/
|
|
List<String> selectDcExecuteActionByEmergencyPlansId(String emergencyPlansId);
|
|
|
|
|
|
}
|
|
|
|
|
|
|