liusuyi
2026-05-14 9958bc1501d0daee954d9bba383475e55e24ebab
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
package com.ard.zlm.service.impl;
 
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ard.zlm.mapper.ZlmRecordPlanItemMapper;
import com.ard.zlm.domain.ZlmRecordPlanItem;
import com.ard.zlm.service.IZlmRecordPlanItemService;
 
/**
 * 录像计划管理通道Service业务层处理
 * 
 * @author fengcheng
 * @date 2026-04-11
 */
@Service
public class ZlmRecordPlanItemServiceImpl implements IZlmRecordPlanItemService 
{
    @Autowired
    private ZlmRecordPlanItemMapper zlmRecordPlanItemMapper;
 
    /**
     * 查询录像计划管理通道
     * 
     * @param id 录像计划管理通道主键
     * @return 录像计划管理通道
     */
    @Override
    public ZlmRecordPlanItem selectZlmRecordPlanItemById(Long id)
    {
        return zlmRecordPlanItemMapper.selectZlmRecordPlanItemById(id);
    }
 
    /**
     * 查询录像计划管理通道列表
     * 
     * @param zlmRecordPlanItem 录像计划管理通道
     * @return 录像计划管理通道
     */
    @Override
    public List<ZlmRecordPlanItem> selectZlmRecordPlanItemList(ZlmRecordPlanItem zlmRecordPlanItem)
    {
        return zlmRecordPlanItemMapper.selectZlmRecordPlanItemList(zlmRecordPlanItem);
    }
 
    /**
     * 新增录像计划管理通道
     * 
     * @param zlmRecordPlanItem 录像计划管理通道
     * @return 结果
     */
    @Override
    public int insertZlmRecordPlanItem(ZlmRecordPlanItem zlmRecordPlanItem)
    {
        return zlmRecordPlanItemMapper.insertZlmRecordPlanItem(zlmRecordPlanItem);
    }
 
    /**
     * 修改录像计划管理通道
     * 
     * @param zlmRecordPlanItem 录像计划管理通道
     * @return 结果
     */
    @Override
    public int updateZlmRecordPlanItem(ZlmRecordPlanItem zlmRecordPlanItem)
    {
        return zlmRecordPlanItemMapper.updateZlmRecordPlanItem(zlmRecordPlanItem);
    }
 
    /**
     * 批量删除录像计划管理通道
     * 
     * @param ids 需要删除的录像计划管理通道主键
     * @return 结果
     */
    @Override
    public int deleteZlmRecordPlanItemByIds(Long[] ids)
    {
        return zlmRecordPlanItemMapper.deleteZlmRecordPlanItemByIds(ids);
    }
 
    /**
     * 删除录像计划管理通道信息
     * 
     * @param id 录像计划管理通道主键
     * @return 结果
     */
    @Override
    public int deleteZlmRecordPlanItemById(Long id)
    {
        return zlmRecordPlanItemMapper.deleteZlmRecordPlanItemById(id);
    }
}