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