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
package com.dingzhuo.energy.basic.data.policy.service;
 
 
import com.dingzhuo.energy.basic.data.policy.domain.PolicyRegulations;
 
import java.util.List;
 
/**
 * 政策法规维护Service接口
 * 
 * @author liuli
 * @date 2020-04-23
 */
public interface IPolicyRegulationsService 
{
    /**
     * 查询政策法规维护
     * 
     * @param id 政策法规维护ID
     * @return 政策法规维护
     */
    public PolicyRegulations selectPolicyRegulationsById(String id);
 
    /**
     * 查询政策法规维护列表
     * 
     * @param policyRegulations 政策法规维护
     * @return 政策法规维护集合
     */
    public List<PolicyRegulations> selectPolicyRegulationsList(PolicyRegulations policyRegulations);
 
    /**
     * 新增政策法规维护
     * 
     * @param policyRegulations 政策法规维护
     * @return 结果
     */
    public int insertPolicyRegulations(PolicyRegulations policyRegulations);
 
    /**
     * 修改政策法规维护
     * 
     * @param policyRegulations 政策法规维护
     * @return 结果
     */
    public int updatePolicyRegulations(PolicyRegulations policyRegulations);
 
    /**
     * 批量删除政策法规维护
     * 
     * @param ids 需要删除的政策法规维护ID
     * @return 结果
     */
    public int deletePolicyRegulationsByIds(String[] ids);
 
    /**
     * 删除政策法规维护信息
     * 
     * @param id 政策法规维护ID
     * @return 结果
     */
    public int deletePolicyRegulationsById(String id);
 
}