sen
4 天以前 5627248e473253b3f10615d6be8b27bb7cc7c4f7
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.ruoyi.tms.service;
 
import java.util.List;
import com.ruoyi.tms.domain.TmsApBill;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * 应付账单Service接口
 * 
 * @author ruoyi
 * @date 2026-01-12
 */
public interface ITmsApBillService extends IService<TmsApBill>
{
    /**
     * 查询应付账单
     * 
     * @param id 应付账单ID
     * @return 应付账单
     */
    public TmsApBill selectTmsApBillById(Integer id);
 
    /**
     * 查询应付账单 记录数
     *
     * @param tmsApBill 应付账单
     * @return 应付账单集合
     */
    public int selectTmsApBillCount(TmsApBill tmsApBill);
 
    /**
     * 查询应付账单列表
     * 
     * @param tmsApBill 应付账单
     * @return 应付账单集合
     */
    public List<TmsApBill> selectTmsApBillList(TmsApBill tmsApBill);
 
    /**
     * 查询应付账单列表 异步 导出
     *
     * @param tmsApBill 应付账单
     * @param exportKey 导出功能的唯一标识
     * @return 应付账单集合
     */
    public void export(TmsApBill tmsApBill, String exportKey) ;
 
 
    /**
     * 新增应付账单
     * 
     * @param tmsApBill 应付账单
     * @return 结果
     */
    public int insertTmsApBill(TmsApBill tmsApBill);
 
    /**
     * 新增应付账单[批量]
     *
     * @param tmsApBills 应付账单
     * @return 结果
     */
    public int insertTmsApBillBatch(List<TmsApBill> tmsApBills);
 
    /**
     * 修改应付账单
     * 
     * @param tmsApBill 应付账单
     * @return 结果
     */
    public int updateTmsApBill(TmsApBill tmsApBill);
 
    /**
     * 修改应付账单[批量]
     *
     * @param tmsApBills 应付账单
     * @return 结果
     */
    public int updateTmsApBillBatch(List<TmsApBill> tmsApBills);
    /**
     * 批量删除应付账单
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsApBillByIds(String ids);
 
    /**
     * 批量删除应付账单
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsApBillByIds(Integer[] ids);
 
    /**
     * 删除应付账单信息
     * 
     * @param id 应付账单ID
     * @return 结果
     */
    public int deleteTmsApBillById(Integer id);
    
    /**
     * 手动推送应付账单到外部系统
     * 
     * @param id 应付账单ID
     * @return 结果
     */
    public void manualPushToExternalSystem(Integer id);
    
    /**
     * 手动推送应付账单作废到外部系统
     * 
     * @param id 应付账单ID
     * @return 结果
     */
    public void cancelPushToExternalSystem(Integer id);
    
    /**
     * 更新推送状态
     *
     * @param id 应付账单ID
     * @param pushStatus 推送状态
     * @return 结果
     */
    public int updatePushStatus(Integer id, Integer pushStatus);
}