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.
65 lines
1.2 KiB
65 lines
1.2 KiB
1 year ago
|
package com.zc.business.mapper;
|
||
|
|
||
|
|
||
|
import com.zc.business.domain.DcEvent;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 事件信息Mapper接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-03
|
||
|
*/
|
||
|
public interface DcEventMapper
|
||
|
{
|
||
|
/**
|
||
|
* 查询事件信息
|
||
|
*
|
||
|
* @param id 事件信息主键
|
||
|
* @return 事件信息
|
||
|
*/
|
||
|
public DcEvent selectDcEventById(String id);
|
||
|
|
||
|
/**
|
||
|
* 查询事件信息列表
|
||
|
*
|
||
|
* @param dcEvent 事件信息
|
||
|
* @return 事件信息集合
|
||
|
*/
|
||
|
public List<DcEvent> selectDcEventList(DcEvent dcEvent);
|
||
|
|
||
|
/**
|
||
|
* 新增事件信息
|
||
|
*
|
||
|
* @param dcEvent 事件信息
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int insertDcEvent(DcEvent dcEvent);
|
||
|
|
||
|
/**
|
||
|
* 修改事件信息
|
||
|
*
|
||
|
* @param dcEvent 事件信息
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int updateDcEvent(DcEvent dcEvent);
|
||
|
|
||
|
/**
|
||
|
* 删除事件信息
|
||
|
*
|
||
|
* @param id 事件信息主键
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteDcEventById(String id);
|
||
|
|
||
|
/**
|
||
|
* 批量删除事件信息
|
||
|
*
|
||
|
* @param ids 需要删除的数据主键集合
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteDcEventByIds(String[] ids);
|
||
|
|
||
|
}
|