wujianwei
2026-01-20 d9d6c0a29c182f63f45e21e0917f122e075c84c4
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
97
98
99
100
101
102
103
package com.ruoyi.cwgl.mapper;
 
import java.util.List;
import com.ruoyi.cwgl.domain.ReceivableFeeDetail;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 
/**
 * 应收费用明细Mapper接口
 * 
 * @author ruoyi
 * @date 2025-12-17
 */
public interface ReceivableFeeDetailMapper  extends BaseMapper<ReceivableFeeDetail>
{
    /**
     * 查询应收费用明细
     * 
     * @param id 应收费用明细ID
     * @return 应收费用明细
     */
    public ReceivableFeeDetail selectReceivableFeeDetailById(Integer id);
 
    /**
     * 查询应收费用明细 记录数
     *
     * @param receivableFeeDetail 应收费用明细
     * @return 应收费用明细集合
     */
    public int selectReceivableFeeDetailCount(ReceivableFeeDetail receivableFeeDetail);
 
    /**
     * 查询应收费用明细列表
     * 
     * @param receivableFeeDetail 应收费用明细
     * @return 应收费用明细集合
     */
    public List<ReceivableFeeDetail> selectReceivableFeeDetailList(ReceivableFeeDetail receivableFeeDetail);
 
    /**
     * 新增应收费用明细
     * 
     * @param receivableFeeDetail 应收费用明细
     * @return 结果
     */
    public int insertReceivableFeeDetail(ReceivableFeeDetail receivableFeeDetail);
 
    /**
     * 新增应收费用明细[批量]
     *
     * @param receivableFeeDetails 应收费用明细
     * @return 结果
     */
    public int insertReceivableFeeDetailBatch(List<ReceivableFeeDetail> receivableFeeDetails);
 
    /**
     * 修改应收费用明细
     * 
     * @param receivableFeeDetail 应收费用明细
     * @return 结果
     */
    public int updateReceivableFeeDetail(ReceivableFeeDetail receivableFeeDetail);
 
    /**
     * 修改应收费用明细[批量]
     *
     * @param receivableFeeDetails 应收费用明细
     * @return 结果
     */
    public int updateReceivableFeeDetailBatch(List<ReceivableFeeDetail> receivableFeeDetails);
 
    /**
     * 删除应收费用明细
     * 
     * @param id 应收费用明细ID
     * @return 结果
     */
    public int deleteReceivableFeeDetailById(Integer id);
 
    /**
     * 批量删除应收费用明细
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteReceivableFeeDetailByIds(Integer[] ids);
    
    /**
     * 根据应收费用ID删除应收费用明细
     * 
     * @param receivableFeeId 应收费用ID
     * @return 结果
     */
    public int deleteReceivableFeeDetailByReceivableFeeId(Integer receivableFeeId);
    
    /**
     * 根据应收费用ID数组查询应收费用明细列表
     * 
     * @param receivableFeeIds 应收费用ID数组
     * @return 应收费用明细集合
     */
    public List<ReceivableFeeDetail> selectReceivableFeeDetailByReceivableFeeIds(Integer[] receivableFeeIds);
}