From 9a224d216652ef2d6ff2e0bd01fba69c86a3f277 Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Fri, 11 Oct 2024 11:28:55 +0800
Subject: [PATCH] 基础表单更新

---
 cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcUseInfrastructureMapper.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcUseInfrastructureMapper.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcUseInfrastructureMapper.java
new file mode 100644
index 0000000..331b7b1
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcUseInfrastructureMapper.java
@@ -0,0 +1,61 @@
+package com.odcc.cpzidc.bis.mapper;
+
+import java.util.List;
+import com.odcc.cpzidc.bis.domain.IdcUseInfrastructure;
+
+/**
+ * 基础设施信息Mapper接口
+ * 
+ * @author ruoyi
+ * @date 2024-10-10
+ */
+public interface IdcUseInfrastructureMapper 
+{
+    /**
+     * 查询基础设施信息
+     * 
+     * @param id 基础设施信息主键
+     * @return 基础设施信息
+     */
+    public IdcUseInfrastructure selectIdcUseInfrastructureById(Long id);
+
+    /**
+     * 查询基础设施信息列表
+     * 
+     * @param idcUseInfrastructure 基础设施信息
+     * @return 基础设施信息集合
+     */
+    public List<IdcUseInfrastructure> selectIdcUseInfrastructureList(IdcUseInfrastructure idcUseInfrastructure);
+
+    /**
+     * 新增基础设施信息
+     * 
+     * @param idcUseInfrastructure 基础设施信息
+     * @return 结果
+     */
+    public int insertIdcUseInfrastructure(IdcUseInfrastructure idcUseInfrastructure);
+
+    /**
+     * 修改基础设施信息
+     * 
+     * @param idcUseInfrastructure 基础设施信息
+     * @return 结果
+     */
+    public int updateIdcUseInfrastructure(IdcUseInfrastructure idcUseInfrastructure);
+
+    /**
+     * 删除基础设施信息
+     * 
+     * @param id 基础设施信息主键
+     * @return 结果
+     */
+    public int deleteIdcUseInfrastructureById(Long id);
+
+    /**
+     * 批量删除基础设施信息
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteIdcUseInfrastructureByIds(Long[] ids);
+}

--
Gitblit v1.9.3