liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.basic.data.policy.service.impl;
 
import com.dingzhuo.energy.basic.data.policy.domain.PolicyRegulationsTranslate;
import com.dingzhuo.energy.basic.data.policy.mapper.PolicyRegulationsTranslateMapper;
import com.dingzhuo.energy.basic.data.policy.service.IPolicyRegulationsTranslateService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * 政策法规查询Service业务层处理
 * 
 * @author liuli
 * @date 2020-04-24
 */
@Service
public class PolicyRegulationsTranslateServiceImpl implements IPolicyRegulationsTranslateService 
{
    @Autowired
    private PolicyRegulationsTranslateMapper policyRegulationsTranslateMapper;
 
    /**
     * 查询政策法规查询
     * 
     * @param id 政策法规查询ID
     * @return 政策法规查询
     */
    @Override
    public PolicyRegulationsTranslate selectPolicyRegulationsTranslateById(String id)
    {
        return policyRegulationsTranslateMapper.selectPolicyRegulationsTranslateById(id);
    }
 
    /**
     * 查询政策法规查询列表
     * 
     * @param policyRegulationsTranslate 政策法规查询
     * @return 政策法规查询
     */
    @Override
    public List<PolicyRegulationsTranslate> selectPolicyRegulationsTranslateList(PolicyRegulationsTranslate policyRegulationsTranslate)
    {
        return policyRegulationsTranslateMapper.selectPolicyRegulationsTranslateList(policyRegulationsTranslate);
    }
 
    /**
     * 新增政策法规查询
     * 
     * @param policyRegulationsTranslate 政策法规查询
     * @return 结果
     */
    @Override
    public int insertPolicyRegulationsTranslate(PolicyRegulationsTranslate policyRegulationsTranslate)
    {
        return policyRegulationsTranslateMapper.insertPolicyRegulationsTranslate(policyRegulationsTranslate);
    }
 
    /**
     * 修改政策法规查询
     * 
     * @param policyRegulationsTranslate 政策法规查询
     * @return 结果
     */
    @Override
    public int updatePolicyRegulationsTranslate(PolicyRegulationsTranslate policyRegulationsTranslate)
    {
        return policyRegulationsTranslateMapper.updatePolicyRegulationsTranslate(policyRegulationsTranslate);
    }
 
    /**
     * 批量删除政策法规查询
     * 
     * @param ids 需要删除的政策法规查询ID
     * @return 结果
     */
    @Override
    public int deletePolicyRegulationsTranslateByIds(String[] ids)
    {
        return policyRegulationsTranslateMapper.deletePolicyRegulationsTranslateByIds(ids);
    }
 
    /**
     * 删除政策法规查询信息
     * 
     * @param id 政策法规查询ID
     * @return 结果
     */
    @Override
    public int deletePolicyRegulationsTranslateById(String id)
    {
        return policyRegulationsTranslateMapper.deletePolicyRegulationsTranslateById(id);
    }
 
 
}