wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.passingStationCollection.service;
2
0ce25f 3 import com.baomidou.mybatisplus.extension.service.IService;
e57a89 4 import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
5
6 import java.util.List;
7
8 /**
9  * 产品过站采集Service接口
10  * 
11  * @author yyt
12  * @date 2023-12-12
13  */
0ce25f 14 public interface IDaPassingStationCollectionService extends IService<DaPassingStationCollection>
e57a89 15 {
16     /**
17      * 查询产品过站采集
18      * 
19      * @param id 产品过站采集主键
20      * @return 产品过站采集
21      */
22     public DaPassingStationCollection selectDaPassingStationCollectionById(Long id);
23
24     /**
25      * 查询产品过站采集列表
26      * 
27      * @param daPassingStationCollection 产品过站采集
28      * @return 产品过站采集集合
29      */
30     public List<DaPassingStationCollection> selectDaPassingStationCollectionList(DaPassingStationCollection daPassingStationCollection);
31
32
33 //    /**
34 //     * 获取首页单日累计量产数据
35 //     * @param fieldName bs
36 //     * @return list
37 //     */
38 //    public Integer getProduceNumToday(String fieldName);
39
40     /**
41      * 新增产品过站采集
42      * 
43      * @param daPassingStationCollection 产品过站采集
44      * @return 结果
45      */
46     public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
47
48     /**
49      * 修改产品过站采集
50      * 
51      * @param daPassingStationCollection 产品过站采集
52      * @return 结果
53      */
54     public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
55
56     /**
57      * 批量删除产品过站采集
58      * 
59      * @param ids 需要删除的产品过站采集主键集合
60      * @return 结果
61      */
62     public int deleteDaPassingStationCollectionByIds(Long[] ids);
63
64     /**
65      * 删除产品过站采集信息
66      * 
67      * @param id 产品过站采集主键
68      * @return 结果
69      */
70     public int deleteDaPassingStationCollectionById(Long id);
71
72     void insertRepairRecordByIds(DaPassingStationCollection daPassingStationCollection);
73 }