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
package com.dingzhuo.energy.basic.data.enerInfoManage.mapper;
 
import com.dingzhuo.energy.basic.data.enerInfoManage.domain.SysEnercoefficient;
import java.util.List;
 
/**
 * 能源折标系数Mapper接口
 * 
 * @author sys
 * @date 2020-02-18
 */
public interface SysEnercoefficientMapper 
{
    /**
     * 查询能源折标系数
     * 
     * @param ecid 能源折标系数ID
     * @return 能源折标系数
     */
    public SysEnercoefficient selectSysEnercoefficientById(Integer ecid);
 
    /**
     * 查询能源折标系数列表
     * 
     * @param sysEnercoefficient 能源折标系数
     * @return 能源折标系数集合
     */
    public List<SysEnercoefficient> selectSysEnercoefficientList(SysEnercoefficient sysEnercoefficient);
 
    /**
     * 新增能源折标系数
     * 
     * @param sysEnercoefficient 能源折标系数
     * @return 结果
     */
    public int insertSysEnercoefficient(SysEnercoefficient sysEnercoefficient);
 
    /**
     * 修改能源折标系数
     * 
     * @param sysEnercoefficient 能源折标系数
     * @return 结果
     */
    public int updateSysEnercoefficient(SysEnercoefficient sysEnercoefficient);
 
    /**
     * 删除能源折标系数
     * 
     * @param ecid 能源折标系数ID
     * @return 结果
     */
    public int deleteSysEnercoefficientById(Integer ecid);
 
    /**
     * 批量删除能源折标系数
     * 
     * @param ecids 需要删除的数据ID
     * @return 结果
     */
    public int deleteSysEnercoefficientByIds(Integer[] ecids);
}