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