中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 37f8463032c06236bfd098133c31cda51217b00f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.odcc.cpzidc.bis.service.impl;
 
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.odcc.cpzidc.bis.mapper.IdcNoIndexMapper;
import com.odcc.cpzidc.bis.domain.IdcNoIndex;
import com.odcc.cpzidc.bis.service.IIdcNoIndexService;
 
/**
 * IDC编号索引Service业务层处理
 * 
 * @author ruoyi
 * @date 2024-10-09
 */
@Service
public class IdcNoIndexServiceImpl implements IIdcNoIndexService 
{
    @Autowired
    private IdcNoIndexMapper idcNoIndexMapper;
 
    /**
     * 查询IDC编号索引
     * 
     * @param id IDC编号索引主键
     * @return IDC编号索引
     */
    @Override
    public IdcNoIndex selectIdcNoIndexById(Long id)
    {
        return idcNoIndexMapper.selectIdcNoIndexById(id);
    }
 
    /**
     * 查询IDC编号索引列表
     * 
     * @param idcNoIndex IDC编号索引
     * @return IDC编号索引
     */
    @Override
    public List<IdcNoIndex> selectIdcNoIndexList(IdcNoIndex idcNoIndex)
    {
        return idcNoIndexMapper.selectIdcNoIndexList(idcNoIndex);
    }
 
    /**
     * 新增IDC编号索引
     * 
     * @param idcNoIndex IDC编号索引
     * @return 结果
     */
    @Override
    public int insertIdcNoIndex(IdcNoIndex idcNoIndex)
    {
        return idcNoIndexMapper.insertIdcNoIndex(idcNoIndex);
    }
 
    /**
     * 修改IDC编号索引
     * 
     * @param idcNoIndex IDC编号索引
     * @return 结果
     */
    @Override
    public int updateIdcNoIndex(IdcNoIndex idcNoIndex)
    {
        return idcNoIndexMapper.updateIdcNoIndex(idcNoIndex);
    }
 
    /**
     * 批量删除IDC编号索引
     * 
     * @param ids 需要删除的IDC编号索引主键
     * @return 结果
     */
    @Override
    public int deleteIdcNoIndexByIds(Long[] ids)
    {
        return idcNoIndexMapper.deleteIdcNoIndexByIds(ids);
    }
 
    /**
     * 删除IDC编号索引信息
     * 
     * @param id IDC编号索引主键
     * @return 结果
     */
    @Override
    public int deleteIdcNoIndexById(Long id)
    {
        return idcNoIndexMapper.deleteIdcNoIndexById(id);
    }
}