中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
commit | author | age
5cc82f 1 package com.odcc.cpzidc.bis.mapper;
Y 2
3 import java.util.List;
4 import com.odcc.cpzidc.bis.domain.IdcUseInfrastructure;
5
6 /**
7  * 基础设施信息Mapper接口
8  * 
9  * @author ruoyi
10  * @date 2024-10-10
11  */
12 public interface IdcUseInfrastructureMapper 
13 {
14     /**
15      * 查询基础设施信息
16      * 
17      * @param id 基础设施信息主键
18      * @return 基础设施信息
19      */
20     public IdcUseInfrastructure selectIdcUseInfrastructureById(Long id);
21
22     /**
23      * 查询基础设施信息列表
24      * 
25      * @param idcUseInfrastructure 基础设施信息
26      * @return 基础设施信息集合
27      */
28     public List<IdcUseInfrastructure> selectIdcUseInfrastructureList(IdcUseInfrastructure idcUseInfrastructure);
29
30     /**
31      * 新增基础设施信息
32      * 
33      * @param idcUseInfrastructure 基础设施信息
34      * @return 结果
35      */
36     public int insertIdcUseInfrastructure(IdcUseInfrastructure idcUseInfrastructure);
37
38     /**
39      * 修改基础设施信息
40      * 
41      * @param idcUseInfrastructure 基础设施信息
42      * @return 结果
43      */
44     public int updateIdcUseInfrastructure(IdcUseInfrastructure idcUseInfrastructure);
45
46     /**
47      * 删除基础设施信息
48      * 
49      * @param id 基础设施信息主键
50      * @return 结果
51      */
52     public int deleteIdcUseInfrastructureById(Long id);
53
54     /**
55      * 批量删除基础设施信息
56      * 
57      * @param ids 需要删除的数据主键集合
58      * @return 结果
59      */
60     public int deleteIdcUseInfrastructureByIds(Long[] ids);
61 }