admin
2024-02-20 435bc751b10bf5868182219bc4c0851ab7674cd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.ruoyi.dl.service.impl;
 
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.dl.mapper.DlShebeixxCdYcsjMapper;
import com.ruoyi.dl.domain.DlShebeixxCdYcsj;
import com.ruoyi.dl.service.IDlShebeixxCdYcsjService;
 
/**
 * 设备测点异常数据Service业务层处理
 *
 * @author ruoyi
 * @date 2023-09-13
 */
@Service
public class DlShebeixxCdYcsjServiceImpl implements IDlShebeixxCdYcsjService
{
    @Autowired
    private DlShebeixxCdYcsjMapper dlShebeixxCdYcsjMapper;
 
    /**
     * 查询设备测点异常数据
     *
     * @param id 设备测点异常数据主键
     * @return 设备测点异常数据
     */
    @Override
    public DlShebeixxCdYcsj selectDlShebeixxCdYcsjById(Long id)
    {
        return dlShebeixxCdYcsjMapper.selectDlShebeixxCdYcsjById(id);
    }
 
    /**
     * 查询设备测点异常数据列表
     *
     * @param dlShebeixxCdYcsj 设备测点异常数据
     * @return 设备测点异常数据
     */
    @Override
    public List<DlShebeixxCdYcsj> selectDlShebeixxCdYcsjList(DlShebeixxCdYcsj dlShebeixxCdYcsj)
    {
        return dlShebeixxCdYcsjMapper.selectDlShebeixxCdYcsjList(dlShebeixxCdYcsj);
    }
 
    /**
     * 查询设备测点异常数据列表
     *
     * @param dlShebeixxCdYcsj 设备测点异常数据
     * @return 设备测点异常数据
     */
    @Override
    public List<DlShebeixxCdYcsj> selectListByGroupBy(DlShebeixxCdYcsj dlShebeixxCdYcsj)
    {
        return dlShebeixxCdYcsjMapper.selectListByGroupBy(dlShebeixxCdYcsj);
    }
 
    /**
     * 新增设备测点异常数据
     *
     * @param dlShebeixxCdYcsj 设备测点异常数据
     * @return 结果
     */
    @Override
    public int insertDlShebeixxCdYcsj(DlShebeixxCdYcsj dlShebeixxCdYcsj)
    {
        return dlShebeixxCdYcsjMapper.insertDlShebeixxCdYcsj(dlShebeixxCdYcsj);
    }
 
    /**
     * 修改设备测点异常数据
     *
     * @param dlShebeixxCdYcsj 设备测点异常数据
     * @return 结果
     */
    @Override
    public int updateDlShebeixxCdYcsj(DlShebeixxCdYcsj dlShebeixxCdYcsj)
    {
        return dlShebeixxCdYcsjMapper.updateDlShebeixxCdYcsj(dlShebeixxCdYcsj);
    }
 
    /**
     * 批量删除设备测点异常数据
     *
     * @param ids 需要删除的设备测点异常数据主键
     * @return 结果
     */
    @Override
    public int deleteDlShebeixxCdYcsjByIds(Long[] ids)
    {
        return dlShebeixxCdYcsjMapper.deleteDlShebeixxCdYcsjByIds(ids);
    }
 
    /**
     * 删除设备测点异常数据信息
     *
     * @param id 设备测点异常数据主键
     * @return 结果
     */
    @Override
    public int deleteDlShebeixxCdYcsjById(Long id)
    {
        return dlShebeixxCdYcsjMapper.deleteDlShebeixxCdYcsjById(id);
    }
}