hdy
2025-02-27 bf5dcc46de28c2ca664be4c6c3566e0a82c1ecd6
提交 | 用户 | 时间
76a2cd 1 package com.billion.main.da.service;
H 2
3 import com.baomidou.mybatisplus.extension.service.IService;
4 import com.billion.main.da.domain.DaStationCollection;
5
6 import java.util.List;
7
8 /**
9  * 过站采集Service接口
10  * 
11  * @author HDY
12  * @date 2025-02-12
13  */
14 public interface IDaStationCollectionService extends IService<DaStationCollection>
15 {
16     /**
17      * 查询过站采集
18      * 
19      * @param id 过站采集主键
20      * @return 过站采集
21      */
22     public DaStationCollection selectDaStationCollectionById(Long id);
23
24     /**
25      * 查询过站采集列表
26      * 
27      * @param daStationCollection 过站采集
28      * @return 过站采集集合
29      */
30     public List<DaStationCollection> selectDaStationCollectionList(DaStationCollection daStationCollection);
31
32     /**
33      * 新增过站采集
34      * 
35      * @param daStationCollection 过站采集
36      * @return 结果
37      */
38     public int insertDaStationCollection(DaStationCollection daStationCollection);
39
40     /**
41      * 修改过站采集
42      * 
43      * @param daStationCollection 过站采集
44      * @return 结果
45      */
46     public int updateDaStationCollection(DaStationCollection daStationCollection);
47
48     /**
49      * 批量删除过站采集
50      * 
51      * @param ids 需要删除的过站采集主键集合
52      * @return 结果
53      */
54     public int deleteDaStationCollectionByIds(Long[] ids);
55
56     /**
57      * 删除过站采集信息
58      * 
59      * @param id 过站采集主键
60      * @return 结果
61      */
62     public int deleteDaStationCollectionById(Long id);
63 }