admin
2024-03-25 6729c925673fcf41cf12f6f1b59d1489a6031731
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.DlShebeixxMapper;
import com.ruoyi.dl.domain.DlShebeixx;
import com.ruoyi.dl.service.IDlShebeixxService;
 
/**
 * 设备信息Service业务层处理
 *
 * @author ruoyi
 * @date 2023-09-13
 */
@Service
public class DlShebeixxServiceImpl implements IDlShebeixxService
{
    @Autowired
    private DlShebeixxMapper dlShebeixxMapper;
 
    /**
     * 查询设备信息
     *
     * @param id 设备信息主键
     * @return 设备信息
     */
    @Override
    public DlShebeixx selectDlShebeixxById(Long id)
    {
        return dlShebeixxMapper.selectDlShebeixxById(id);
    }
 
    /**
     * 查询设备信息列表
     *
     * @param dlShebeixx 设备信息
     * @return 设备信息
     */
    @Override
    public List<DlShebeixx> selectDlShebeixxList(DlShebeixx dlShebeixx)
    {
        return dlShebeixxMapper.selectDlShebeixxList(dlShebeixx);
    }
 
    /**
     * 查询设备信息列表
     *
     * @param dlShebeixx 设备信息
     * @return 设备信息
     */
    @Override
    public List<DlShebeixx> selectListByGroupBy(DlShebeixx dlShebeixx)
    {
        return dlShebeixxMapper.selectListByGroupBy(dlShebeixx);
    }
 
    /**
     * 新增设备信息
     *
     * @param dlShebeixx 设备信息
     * @return 结果
     */
    @Override
    public int insertDlShebeixx(DlShebeixx dlShebeixx)
    {
        return dlShebeixxMapper.insertDlShebeixx(dlShebeixx);
    }
 
    /**
     * 修改设备信息
     *
     * @param dlShebeixx 设备信息
     * @return 结果
     */
    @Override
    public int updateDlShebeixx(DlShebeixx dlShebeixx)
    {
        return dlShebeixxMapper.updateDlShebeixx(dlShebeixx);
    }
 
    /**
     * 批量删除设备信息
     *
     * @param ids 需要删除的设备信息主键
     * @return 结果
     */
    @Override
    public int deleteDlShebeixxByIds(Long[] ids)
    {
        return dlShebeixxMapper.deleteDlShebeixxByIds(ids);
    }
 
    /**
     * 删除设备信息信息
     *
     * @param id 设备信息主键
     * @return 结果
     */
    @Override
    public int deleteDlShebeixxById(Long id)
    {
        return dlShebeixxMapper.deleteDlShebeixxById(id);
    }
}