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
package com.dingzhuo.energy.basic.data.enerInfoManage.mapper;
 
import com.dingzhuo.energy.basic.data.enerInfoManage.domain.SysPrice;
 
import java.util.List;
 
/**
 * 单价设置Mapper接口
 *
 * @author ruoyi
 * @date 2020-02-15
 */
public interface SysPriceMapper
{
    /**
     * 查询单价设置
     *
     * @param priceid 单价设置ID
     * @return 单价设置
     */
    public SysPrice selectSysPriceById(Integer priceid);
 
    /**
     * 查询单价设置列表
     *
     * @param sysPrice 单价设置
     * @return 单价设置集合
     */
    public List<SysPrice> selectSysPriceList(SysPrice sysPrice);
 
    /**
     * 新增单价设置
     *
     * @param sysPrice 单价设置
     * @return 结果
     */
    public int insertSysPrice(SysPrice sysPrice);
 
    /**
     * 修改单价设置
     *
     * @param sysPrice 单价设置
     * @return 结果
     */
    public int updateSysPrice(SysPrice sysPrice);
 
    /**
     * 删除单价设置
     *
     * @param priceid 单价设置ID
     * @return 结果
     */
    public int deleteSysPriceById(Integer priceid);
 
    /**
     * 批量删除单价设置
     *
     * @param priceids 需要删除的数据ID
     * @return 结果
     */
    public int deleteSysPriceByIds(Integer[] priceids);
}