wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
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
package com.jcdm.main.em.inspectionPlanArchives.service.impl;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.jcdm.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jcdm.main.em.inspectionPlanArchives.mapper.EmInspectionPlanArchivesMapper;
import com.jcdm.main.em.inspectionPlanArchives.domain.EmInspectionPlanArchives;
import com.jcdm.main.em.inspectionPlanArchives.service.IEmInspectionPlanArchivesService;
 
/**
 * 点检保养计划设备清单Service业务层处理
 * 
 * @author Yi
 * @date 2024-03-14
 */
@Service
public class EmInspectionPlanArchivesServiceImpl extends ServiceImpl<EmInspectionPlanArchivesMapper,EmInspectionPlanArchives> implements IEmInspectionPlanArchivesService
{
    @Autowired
    private EmInspectionPlanArchivesMapper emInspectionPlanArchivesMapper;
 
    /**
     * 查询点检保养计划设备清单
     * 
     * @param id 点检保养计划设备清单主键
     * @return 点检保养计划设备清单
     */
    @Override
    public EmInspectionPlanArchives selectEmInspectionPlanArchivesById(Long id)
    {
        return emInspectionPlanArchivesMapper.selectEmInspectionPlanArchivesById(id);
    }
 
    /**
     * 查询点检保养计划设备清单列表
     * 
     * @param emInspectionPlanArchives 点检保养计划设备清单
     * @return 点检保养计划设备清单
     */
    @Override
    public List<EmInspectionPlanArchives> selectEmInspectionPlanArchivesList(EmInspectionPlanArchives emInspectionPlanArchives)
    {
        return emInspectionPlanArchivesMapper.selectEmInspectionPlanArchivesList(emInspectionPlanArchives);
    }
 
    /**
     * 新增点检保养计划设备清单
     * 
     * @param emInspectionPlanArchives 点检保养计划设备清单
     * @return 结果
     */
    @Override
    public int insertEmInspectionPlanArchives(EmInspectionPlanArchives emInspectionPlanArchives)
    {
        emInspectionPlanArchives.setCreateTime(DateUtils.getNowDate());
        return emInspectionPlanArchivesMapper.insertEmInspectionPlanArchives(emInspectionPlanArchives);
    }
 
    /**
     * 修改点检保养计划设备清单
     * 
     * @param emInspectionPlanArchives 点检保养计划设备清单
     * @return 结果
     */
    @Override
    public int updateEmInspectionPlanArchives(EmInspectionPlanArchives emInspectionPlanArchives)
    {
        emInspectionPlanArchives.setUpdateTime(DateUtils.getNowDate());
        return emInspectionPlanArchivesMapper.updateEmInspectionPlanArchives(emInspectionPlanArchives);
    }
 
    /**
     * 批量删除点检保养计划设备清单
     * 
     * @param ids 需要删除的点检保养计划设备清单主键
     * @return 结果
     */
    @Override
    public int deleteEmInspectionPlanArchivesByIds(Long[] ids)
    {
        return emInspectionPlanArchivesMapper.deleteEmInspectionPlanArchivesByIds(ids);
    }
 
    /**
     * 删除点检保养计划设备清单信息
     * 
     * @param id 点检保养计划设备清单主键
     * @return 结果
     */
    @Override
    public int deleteEmInspectionPlanArchivesById(Long id)
    {
        return emInspectionPlanArchivesMapper.deleteEmInspectionPlanArchivesById(id);
    }
}