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.
64 lines
1.3 KiB
64 lines
1.3 KiB
package com.zc.business.mapper;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import com.zc.business.domain.DcWarning;
|
|
|
|
/**
|
|
* 预警信息Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-26
|
|
*/
|
|
public interface DcWarningMapper
|
|
{
|
|
/**
|
|
* 查询预警信息
|
|
*
|
|
* @param id 预警信息主键
|
|
* @return 预警信息
|
|
*/
|
|
public HashMap<String,Object> selectDcWarningById(Integer id);
|
|
|
|
/**
|
|
* 查询预警信息列表
|
|
*
|
|
* @param dcWarning 预警信息
|
|
* @return 预警信息集合
|
|
*/
|
|
List<HashMap<String,Object>> selectDcWarningList(DcWarning dcWarning);
|
|
//导出
|
|
List<DcWarning> export(DcWarning dcWarning);
|
|
/**
|
|
* 新增预警信息
|
|
*
|
|
* @param dcWarning 预警信息
|
|
* @return 结果
|
|
*/
|
|
int insertDcWarning(DcWarning dcWarning);
|
|
|
|
/**
|
|
* 修改预警信息
|
|
*
|
|
* @param dcWarning 预警信息
|
|
* @return 结果
|
|
*/
|
|
int updateDcWarning(DcWarning dcWarning);
|
|
|
|
/**
|
|
* 删除预警信息
|
|
*
|
|
* @param id 预警信息主键
|
|
* @return 结果
|
|
*/
|
|
int deleteDcWarningById(Integer id);
|
|
|
|
/**
|
|
* 批量删除预警信息
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteDcWarningByIds(Integer[] ids);
|
|
int selectCount();
|
|
}
|
|
|