admin
6 天以前 18cb51817380016c4024f9f462ea91b57bfa40f9
提交 | 用户 | 时间
61c519 1 package com.jcdm.main.da.passingStationCollection.service;
A 2
3 import com.baomidou.mybatisplus.extension.service.IService;
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  */
14 public interface IDaPassingStationCollectionService extends IService<DaPassingStationCollection>
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     public int updateDaPassingStationCollectionBySfcCodeAndLocationCode(DaPassingStationCollection daPassingStationCollection);
57
58
59     /**
60      * 批量删除产品过站采集
61      * 
62      * @param ids 需要删除的产品过站采集主键集合
63      * @return 结果
64      */
65     public int deleteDaPassingStationCollectionByIds(Long[] ids);
66
67     /**
68      * 删除产品过站采集信息
69      * 
70      * @param id 产品过站采集主键
71      * @return 结果
72      */
73     public int deleteDaPassingStationCollectionById(Long id);
74
75     void insertRepairRecordByIds(DaPassingStationCollection daPassingStationCollection);
76
77     int jrmAddPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
78
79     void saveBeachDaPassingStationCollection(List<DaPassingStationCollection> list);
80
81     void insertBatch(List<DaPassingStationCollection> confList);
82 }