From d3c9a7bd6583318fa935798a3a4f785c274765e2 Mon Sep 17 00:00:00 2001 From: chenll Date: Fri, 20 Jun 2025 22:13:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=AE=A2=E6=B5=81=E4=B8=80=E5=BC=A0?= =?UTF-8?q?=E5=9B=BE=E5=8A=9F=E8=83=BD=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/DklWarningThresholdMapper.java | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Dkl-Vue-master/dkl-large/src/main/java/com/dkl/large/mapper/DklWarningThresholdMapper.java diff --git a/Dkl-Vue-master/dkl-large/src/main/java/com/dkl/large/mapper/DklWarningThresholdMapper.java b/Dkl-Vue-master/dkl-large/src/main/java/com/dkl/large/mapper/DklWarningThresholdMapper.java new file mode 100644 index 0000000..3213a55 --- /dev/null +++ b/Dkl-Vue-master/dkl-large/src/main/java/com/dkl/large/mapper/DklWarningThresholdMapper.java @@ -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 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); +}