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