package com.javaweb.platform.service; import com.javaweb.platform.domain.StageInfo; import java.util.List; /** * 水位记录Service接口 * * @author zzf * @date 2022-03-25 */ public interface IStageInfoService { /** * 查询水位记录 * * @param id 水位记录ID * @return 水位记录 */ public StageInfo selectStageInfoById(String id); /** * 查询水位记录列表 * * @param stageInfo 水位记录 * @return 水位记录集合 */ public List selectStageInfoList(StageInfo stageInfo); /** * 新增水位记录 * * @param stageInfo 水位记录 * @return 结果 */ public int insertStageInfo(StageInfo stageInfo); /** * 修改水位记录 * * @param stageInfo 水位记录 * @return 结果 */ public int updateStageInfo(StageInfo stageInfo); /** * 批量删除水位记录 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteStageInfoByIds(String ids); /** * 删除水位记录信息 * * @param id 水位记录ID * @return 结果 */ public int deleteStageInfoById(String id); }