预警信息处置功能开发
This commit is contained in:
parent
164a4af7a1
commit
cc1b9ee18b
|
|
@ -0,0 +1,61 @@
|
||||||
|
package com.dkl.large.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import com.dkl.large.domain.DklWarningInformationHandle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 预警信息处置Mapper接口
|
||||||
|
*
|
||||||
|
* @author Dkl
|
||||||
|
* @date 2025-06-16
|
||||||
|
*/
|
||||||
|
public interface DklWarningInformationHandleMapper
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询预警信息处置
|
||||||
|
*
|
||||||
|
* @param id 预警信息处置主键
|
||||||
|
* @return 预警信息处置
|
||||||
|
*/
|
||||||
|
public DklWarningInformationHandle selectDklWarningInformationHandleById(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询预警信息处置列表
|
||||||
|
*
|
||||||
|
* @param dklWarningInformationHandle 预警信息处置
|
||||||
|
* @return 预警信息处置集合
|
||||||
|
*/
|
||||||
|
public List<DklWarningInformationHandle> selectDklWarningInformationHandleList(DklWarningInformationHandle dklWarningInformationHandle);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增预警信息处置
|
||||||
|
*
|
||||||
|
* @param dklWarningInformationHandle 预警信息处置
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int insertDklWarningInformationHandle(DklWarningInformationHandle dklWarningInformationHandle);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改预警信息处置
|
||||||
|
*
|
||||||
|
* @param dklWarningInformationHandle 预警信息处置
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int updateDklWarningInformationHandle(DklWarningInformationHandle dklWarningInformationHandle);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除预警信息处置
|
||||||
|
*
|
||||||
|
* @param id 预警信息处置主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDklWarningInformationHandleById(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除预警信息处置
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的数据主键集合
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDklWarningInformationHandleByIds(Long[] ids);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue