中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 9a224d216652ef2d6ff2e0bd01fba69c86a3f277
commit | author | age
5cc82f 1 package com.odcc.cpzidc.bis.service;
Y 2
3 import java.util.List;
4 import com.odcc.cpzidc.bis.domain.IdcUseGreen;
5
6 /**
7  * 绿色运行指标信息Service接口
8  * 
9  * @author ruoyi
10  * @date 2024-10-10
11  */
12 public interface IIdcUseGreenService 
13 {
14     /**
15      * 查询绿色运行指标信息
16      * 
17      * @param id 绿色运行指标信息主键
18      * @return 绿色运行指标信息
19      */
20     public IdcUseGreen selectIdcUseGreenById(Long id);
21
22     /**
23      * 查询绿色运行指标信息列表
24      * 
25      * @param idcUseGreen 绿色运行指标信息
26      * @return 绿色运行指标信息集合
27      */
28     public List<IdcUseGreen> selectIdcUseGreenList(IdcUseGreen idcUseGreen);
29
30     /**
31      * 新增绿色运行指标信息
32      * 
33      * @param idcUseGreen 绿色运行指标信息
34      * @return 结果
35      */
36     public int insertIdcUseGreen(IdcUseGreen idcUseGreen);
37
38     /**
39      * 修改绿色运行指标信息
40      * 
41      * @param idcUseGreen 绿色运行指标信息
42      * @return 结果
43      */
44     public int updateIdcUseGreen(IdcUseGreen idcUseGreen);
45
46     /**
47      * 批量删除绿色运行指标信息
48      * 
49      * @param ids 需要删除的绿色运行指标信息主键集合
50      * @return 结果
51      */
52     public int deleteIdcUseGreenByIds(Long[] ids);
53
54     /**
55      * 删除绿色运行指标信息信息
56      * 
57      * @param id 绿色运行指标信息主键
58      * @return 结果
59      */
60     public int deleteIdcUseGreenById(Long id);
61 }