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/service/IIdcUseGreenService.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcUseGreenService.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcUseGreenService.java
new file mode 100644
index 0000000..613b5db
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/service/IIdcUseGreenService.java
@@ -0,0 +1,61 @@
+package com.odcc.cpzidc.bis.service;
+
+import java.util.List;
+import com.odcc.cpzidc.bis.domain.IdcUseGreen;
+
+/**
+ * 绿色运行指标信息Service接口
+ * 
+ * @author ruoyi
+ * @date 2024-10-10
+ */
+public interface IIdcUseGreenService 
+{
+    /**
+     * 查询绿色运行指标信息
+     * 
+     * @param id 绿色运行指标信息主键
+     * @return 绿色运行指标信息
+     */
+    public IdcUseGreen selectIdcUseGreenById(Long id);
+
+    /**
+     * 查询绿色运行指标信息列表
+     * 
+     * @param idcUseGreen 绿色运行指标信息
+     * @return 绿色运行指标信息集合
+     */
+    public List<IdcUseGreen> selectIdcUseGreenList(IdcUseGreen idcUseGreen);
+
+    /**
+     * 新增绿色运行指标信息
+     * 
+     * @param idcUseGreen 绿色运行指标信息
+     * @return 结果
+     */
+    public int insertIdcUseGreen(IdcUseGreen idcUseGreen);
+
+    /**
+     * 修改绿色运行指标信息
+     * 
+     * @param idcUseGreen 绿色运行指标信息
+     * @return 结果
+     */
+    public int updateIdcUseGreen(IdcUseGreen idcUseGreen);
+
+    /**
+     * 批量删除绿色运行指标信息
+     * 
+     * @param ids 需要删除的绿色运行指标信息主键集合
+     * @return 结果
+     */
+    public int deleteIdcUseGreenByIds(Long[] ids);
+
+    /**
+     * 删除绿色运行指标信息信息
+     * 
+     * @param id 绿色运行指标信息主键
+     * @return 结果
+     */
+    public int deleteIdcUseGreenById(Long id);
+}

--
Gitblit v1.9.3