From 37f8463032c06236bfd098133c31cda51217b00f Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Wed, 09 Oct 2024 23:08:37 +0800
Subject: [PATCH] 数据中心编号处理

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

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcNoIndexService.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcNoIndexService.java
new file mode 100644
index 0000000..cca081b
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcNoIndexService.java
@@ -0,0 +1,61 @@
+package com.odcc.cpzidc.bis.service;
+
+import java.util.List;
+import com.odcc.cpzidc.bis.domain.IdcNoIndex;
+
+/**
+ * IDC编号索引Service接口
+ * 
+ * @author ruoyi
+ * @date 2024-10-09
+ */
+public interface IIdcNoIndexService 
+{
+    /**
+     * 查询IDC编号索引
+     * 
+     * @param id IDC编号索引主键
+     * @return IDC编号索引
+     */
+    public IdcNoIndex selectIdcNoIndexById(Long id);
+
+    /**
+     * 查询IDC编号索引列表
+     * 
+     * @param idcNoIndex IDC编号索引
+     * @return IDC编号索引集合
+     */
+    public List<IdcNoIndex> selectIdcNoIndexList(IdcNoIndex idcNoIndex);
+
+    /**
+     * 新增IDC编号索引
+     * 
+     * @param idcNoIndex IDC编号索引
+     * @return 结果
+     */
+    public int insertIdcNoIndex(IdcNoIndex idcNoIndex);
+
+    /**
+     * 修改IDC编号索引
+     * 
+     * @param idcNoIndex IDC编号索引
+     * @return 结果
+     */
+    public int updateIdcNoIndex(IdcNoIndex idcNoIndex);
+
+    /**
+     * 批量删除IDC编号索引
+     * 
+     * @param ids 需要删除的IDC编号索引主键集合
+     * @return 结果
+     */
+    public int deleteIdcNoIndexByIds(Long[] ids);
+
+    /**
+     * 删除IDC编号索引信息
+     * 
+     * @param id IDC编号索引主键
+     * @return 结果
+     */
+    public int deleteIdcNoIndexById(Long id);
+}

--
Gitblit v1.9.3