package com.ruoyi.project.dc.factoryEvacuation.mapper; import java.util.List; import com.ruoyi.project.dc.factoryEvacuation.domain.FactoryEvacuation; /** * 厂区疏散Mapper接口 * * @author wm * @date 2020-12-07 */ public interface FactoryEvacuationMapper { /** * 查询厂区疏散 * * @param factoryEvacuationId 厂区疏散ID * @return 厂区疏散 */ FactoryEvacuation selectFactoryEvacuationById(Long factoryEvacuationId); /** * 查询厂区疏散列表 * * @param factoryEvacuation 厂区疏散 * @return 厂区疏散集合 */ List selectFactoryEvacuationList(FactoryEvacuation factoryEvacuation); /** * 新增厂区疏散 * * @param factoryEvacuation 厂区疏散 * @return 结果 */ int insertFactoryEvacuation(FactoryEvacuation factoryEvacuation); /** * 修改厂区疏散 * * @param factoryEvacuation 厂区疏散 * @return 结果 */ int updateFactoryEvacuation(FactoryEvacuation factoryEvacuation); /** * 删除厂区疏散 * * @param factoryEvacuationId 厂区疏散ID * @return 结果 */ int deleteFactoryEvacuationById(Long factoryEvacuationId); /** * 批量删除厂区疏散 * * @param factoryEvacuationIds 需要删除的数据ID * @return 结果 */ int deleteFactoryEvacuationByIds(String[] factoryEvacuationIds); }