package com.artfess.rescue.event.manager;

import com.artfess.rescue.event.model.BizEventUpload;
import com.artfess.base.manager.BaseManager;

import java.lang.reflect.InvocationTargetException;

/**
 * 事件上报 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-08-05
 */
public interface BizEventUploadManager extends BaseManager<BizEventUpload> {

    /**
     * 确认环节
     * @param id
     * @return
     */
     boolean isAffirm(String id) throws InvocationTargetException, IllegalAccessException;

    /**
     * 修改审核状态
     */
    boolean updateByStatus(String id,Integer status);
}
