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