中国算力平台算力登记系统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.IdcUseBase;
5
6 /**
7  * 在用数据中心Service接口
8  * 
9  * @author ruoyi
10  * @date 2024-10-10
11  */
12 public interface IIdcUseBaseService 
13 {
14     /**
15      * 查询在用数据中心
16      * 
17      * @param id 在用数据中心主键
18      * @return 在用数据中心
19      */
20     public IdcUseBase selectIdcUseBaseById(Long id);
21
22     /**
23      * 查询在用数据中心列表
24      * 
25      * @param idcUseBase 在用数据中心
26      * @return 在用数据中心集合
27      */
28     public List<IdcUseBase> selectIdcUseBaseList(IdcUseBase idcUseBase);
29
30     /**
31      * 新增在用数据中心
32      * 
33      * @param idcUseBase 在用数据中心
34      * @return 结果
35      */
36     public int insertIdcUseBase(IdcUseBase idcUseBase);
37
38     /**
39      * 修改在用数据中心
40      * 
41      * @param idcUseBase 在用数据中心
42      * @return 结果
43      */
44     public int updateIdcUseBase(IdcUseBase idcUseBase);
45
46     /**
47      * 批量删除在用数据中心
48      * 
49      * @param ids 需要删除的在用数据中心主键集合
50      * @return 结果
51      */
52     public int deleteIdcUseBaseByIds(Long[] ids);
53
54     /**
55      * 删除在用数据中心信息
56      * 
57      * @param id 在用数据中心主键
58      * @return 结果
59      */
60     public int deleteIdcUseBaseById(Long id);
61 }