龚焕茏
2024-03-21 945afec19a11ea45375ab1a0e739ef8fc4d22ed1
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.ycl.platform.mapper;
 
 
import com.ycl.platform.domain.entity.AccountingRules;
 
import java.util.List;
 
/**
 * 核算规则Mapper接口
 *
 * @author gonghl
 * @date 2024-03-21
 */
public interface AccountingRulesMapper {
    /**
     * 查询核算规则
     *
     * @param id 核算规则主键
     * @return 核算规则
     */
    public AccountingRules selectAccountingRulesById(Integer id);
 
    /**
     * 查询核算规则列表
     *
     * @param accountingRules 核算规则
     * @return 核算规则集合
     */
    public List<AccountingRules> selectAccountingRulesList(AccountingRules accountingRules);
 
    /**
     * 新增核算规则
     *
     * @param accountingRules 核算规则
     * @return 结果
     */
    public int insertAccountingRules(AccountingRules accountingRules);
 
    /**
     * 修改核算规则
     *
     * @param accountingRules 核算规则
     * @return 结果
     */
    public int updateAccountingRules(AccountingRules accountingRules);
 
    /**
     * 删除核算规则
     *
     * @param id 核算规则主键
     * @return 结果
     */
    public int deleteAccountingRulesById(Integer id);
 
    /**
     * 批量删除核算规则
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteAccountingRulesByIds(Integer[] ids);
}