TEventInfoMapper.java 1.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
package com.zehong.system.mapper;

import java.util.List;
import com.zehong.system.domain.TEventInfo;

/**
 * 事件处置Mapper接口
 * 
 * @author zehong
 * @date 2022-02-11
 */
public interface TEventInfoMapper 
{
    /**
     * 查询事件处置
     * 
     * @param eventId 事件处置ID
     * @return 事件处置
     */
    public TEventInfo selectTEventInfoById(Long eventId);

    /**
     * 查询事件处置列表
     * 
     * @param tEventInfo 事件处置
     * @return 事件处置集合
     */
    public List<TEventInfo> selectTEventInfoList(TEventInfo tEventInfo);

    /**
     * 新增事件处置
     * 
     * @param tEventInfo 事件处置
     * @return 结果
     */
    public int insertTEventInfo(TEventInfo tEventInfo);

    /**
     * 修改事件处置
     * 
     * @param tEventInfo 事件处置
     * @return 结果
     */
    public int updateTEventInfo(TEventInfo tEventInfo);

    /**
     * 删除事件处置
     * 
     * @param eventId 事件处置ID
     * @return 结果
     */
    public int deleteTEventInfoById(Long eventId);

    /**
     * 批量删除事件处置
     * 
     * @param eventIds 需要删除的数据ID
     * @return 结果
     */
    public int deleteTEventInfoByIds(Long[] eventIds);
}