源数据表+入库逻辑+计算95带宽值/日
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
package com.ruoyi.rocketmq.mapper;
|
||||
|
||||
import com.ruoyi.rocketmq.domain.InitialMountPointInfo;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 挂载点监控信息Mapper接口
|
||||
*
|
||||
* @author gyt
|
||||
* @date 2025-08-25
|
||||
*/
|
||||
public interface InitialMountPointInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询挂载点监控信息
|
||||
*
|
||||
* @param id 挂载点监控信息主键
|
||||
* @return 挂载点监控信息
|
||||
*/
|
||||
public InitialMountPointInfo selectInitialMountPointInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询挂载点监控信息列表
|
||||
*
|
||||
* @param initialMountPointInfo 挂载点监控信息
|
||||
* @return 挂载点监控信息集合
|
||||
*/
|
||||
public List<InitialMountPointInfo> selectInitialMountPointInfoList(InitialMountPointInfo initialMountPointInfo);
|
||||
|
||||
/**
|
||||
* 新增挂载点监控信息
|
||||
*
|
||||
* @param initialMountPointInfo 挂载点监控信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertInitialMountPointInfo(InitialMountPointInfo initialMountPointInfo);
|
||||
|
||||
/**
|
||||
* 修改挂载点监控信息
|
||||
*
|
||||
* @param initialMountPointInfo 挂载点监控信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateInitialMountPointInfo(InitialMountPointInfo initialMountPointInfo);
|
||||
|
||||
/**
|
||||
* 删除挂载点监控信息
|
||||
*
|
||||
* @param id 挂载点监控信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteInitialMountPointInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除挂载点监控信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteInitialMountPointInfoByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增挂载点监控信息
|
||||
*
|
||||
* @param list 挂载点监控信息集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertInitialMountPointInfo(@Param("list") List<InitialMountPointInfo> list);
|
||||
}
|
||||
Reference in New Issue
Block a user