wujianwei
2025-08-15 ad042668c0f7898a5a491fc7c2a90a0426b7c25b
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
package com.ruoyi.cwgl.mapper;
 
import java.util.List;
import com.ruoyi.cwgl.domain.EstimatedReceivable;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
 
/**
 * 预估应收管理Mapper接口
 * 
 * @author ruoyi
 * @date 2025-08-07
 */
public interface EstimatedReceivableMapper  extends BaseMapper<EstimatedReceivable>
{
    /**
     * 查询预估应收管理
     * 
     * @param id 预估应收管理ID
     * @return 预估应收管理
     */
    public EstimatedReceivable selectEstimatedReceivableById(Integer id);
 
    /**
     * 查询预估应收管理 记录数
     *
     * @param estimatedReceivable 预估应收管理
     * @return 预估应收管理集合
     */
    public int selectEstimatedReceivableCount(EstimatedReceivable estimatedReceivable);
 
    /**
     * 查询预估应收管理列表
     * 
     * @param estimatedReceivable 预估应收管理
     * @return 预估应收管理集合
     */
    public List<EstimatedReceivable> selectEstimatedReceivableList(EstimatedReceivable estimatedReceivable);
 
    /**
     * 新增预估应收管理
     * 
     * @param estimatedReceivable 预估应收管理
     * @return 结果
     */
    public int insertEstimatedReceivable(EstimatedReceivable estimatedReceivable);
 
    /**
     * 新增预估应收管理[批量]
     *
     * @param estimatedReceivables 预估应收管理
     * @return 结果
     */
    public int insertEstimatedReceivableBatch(List<EstimatedReceivable> estimatedReceivables);
 
    /**
     * 修改预估应收管理
     * 
     * @param estimatedReceivable 预估应收管理
     * @return 结果
     */
    public int updateEstimatedReceivable(EstimatedReceivable estimatedReceivable);
 
    /**
     * 修改预估应收管理[批量]
     *
     * @param estimatedReceivables 预估应收管理
     * @return 结果
     */
    public int updateEstimatedReceivableBatch(List<EstimatedReceivable> estimatedReceivables);
 
    /**
     * 删除预估应收管理
     * 
     * @param id 预估应收管理ID
     * @return 结果
     */
    public int deleteEstimatedReceivableById(Integer id);
 
    /**
     * 批量删除预估应收管理
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteEstimatedReceivableByIds(Integer[] ids);
 
    void updateEstimatedReceivableBillStatus(@Param("list") List<String> list, @Param("status") int status);
}