package com.zehong.system.mapper; import java.util.List; import com.zehong.system.domain.TMaterialInfo; /** * 应急物资管理Mapper接口 * * @author zehong * @date 2022-07-01 */ public interface TMaterialInfoMapper { /** * 查询应急物资管理 * * @param id 应急物资管理ID * @return 应急物资管理 */ public TMaterialInfo selectTMaterialInfoById(Long id); /** * 查询应急物资管理列表 * * @param tMaterialInfo 应急物资管理 * @return 应急物资管理集合 */ public List<TMaterialInfo> selectTMaterialInfoList(TMaterialInfo tMaterialInfo); /** * 新增应急物资管理 * * @param tMaterialInfo 应急物资管理 * @return 结果 */ public int insertTMaterialInfo(TMaterialInfo tMaterialInfo); /** * 修改应急物资管理 * * @param tMaterialInfo 应急物资管理 * @return 结果 */ public int updateTMaterialInfo(TMaterialInfo tMaterialInfo); /** * 删除应急物资管理 * * @param id 应急物资管理ID * @return 结果 */ public int deleteTMaterialInfoById(Long id); /** * 批量删除应急物资管理 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteTMaterialInfoByIds(Long[] ids); }