大客流一张图功能测试
This commit is contained in:
parent
b7e21c9446
commit
d3c9a7bd65
|
|
@ -0,0 +1,61 @@
|
|||
package com.dkl.large.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.dkl.large.domain.DklWarningThreshold;
|
||||
|
||||
/**
|
||||
* 容量阀值Mapper接口
|
||||
*
|
||||
* @author Dkl
|
||||
* @date 2025-06-07
|
||||
*/
|
||||
public interface DklWarningThresholdMapper
|
||||
{
|
||||
/**
|
||||
* 查询容量阀值
|
||||
*
|
||||
* @param id 容量阀值主键
|
||||
* @return 容量阀值
|
||||
*/
|
||||
public DklWarningThreshold selectDklWarningThresholdById(Integer id);
|
||||
|
||||
/**
|
||||
* 查询容量阀值列表
|
||||
*
|
||||
* @param dklWarningThreshold 容量阀值
|
||||
* @return 容量阀值集合
|
||||
*/
|
||||
public List<DklWarningThreshold> selectDklWarningThresholdList(DklWarningThreshold dklWarningThreshold);
|
||||
|
||||
/**
|
||||
* 新增容量阀值
|
||||
*
|
||||
* @param dklWarningThreshold 容量阀值
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertDklWarningThreshold(DklWarningThreshold dklWarningThreshold);
|
||||
|
||||
/**
|
||||
* 修改容量阀值
|
||||
*
|
||||
* @param dklWarningThreshold 容量阀值
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateDklWarningThreshold(DklWarningThreshold dklWarningThreshold);
|
||||
|
||||
/**
|
||||
* 删除容量阀值
|
||||
*
|
||||
* @param id 容量阀值主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteDklWarningThresholdById(Integer id);
|
||||
|
||||
/**
|
||||
* 批量删除容量阀值
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteDklWarningThresholdByIds(int[] ids);
|
||||
}
|
||||
Loading…
Reference in New Issue