wujianwei
7 天以前 d1b3c20c7a17ec19c9597a774586b5fa5b30d8fd
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
package com.ruoyi.tms.mapper;
 
import java.util.List;
import com.ruoyi.tms.domain.PayableAuditLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 
/**
 * 应付账单审核日志Mapper接口
 * 
 * @author ruoyi
 * @date 2026-04-07
 */
public interface PayableAuditLogMapper  extends BaseMapper<PayableAuditLog>
{
    /**
     * 查询应付账单审核日志
     * 
     * @param id 应付账单审核日志ID
     * @return 应付账单审核日志
     */
    public PayableAuditLog selectPayableAuditLogById(Integer id);
 
    /**
     * 查询应付账单审核日志 记录数
     *
     * @param payableAuditLog 应付账单审核日志
     * @return 应付账单审核日志集合
     */
    public int selectPayableAuditLogCount(PayableAuditLog payableAuditLog);
 
    /**
     * 查询应付账单审核日志列表
     * 
     * @param payableAuditLog 应付账单审核日志
     * @return 应付账单审核日志集合
     */
    public List<PayableAuditLog> selectPayableAuditLogList(PayableAuditLog payableAuditLog);
 
    /**
     * 新增应付账单审核日志
     * 
     * @param payableAuditLog 应付账单审核日志
     * @return 结果
     */
    public int insertPayableAuditLog(PayableAuditLog payableAuditLog);
 
    /**
     * 新增应付账单审核日志[批量]
     *
     * @param payableAuditLogs 应付账单审核日志
     * @return 结果
     */
    public int insertPayableAuditLogBatch(List<PayableAuditLog> payableAuditLogs);
 
    /**
     * 修改应付账单审核日志
     * 
     * @param payableAuditLog 应付账单审核日志
     * @return 结果
     */
    public int updatePayableAuditLog(PayableAuditLog payableAuditLog);
 
    /**
     * 修改应付账单审核日志[批量]
     *
     * @param payableAuditLogs 应付账单审核日志
     * @return 结果
     */
    public int updatePayableAuditLogBatch(List<PayableAuditLog> payableAuditLogs);
 
    /**
     * 删除应付账单审核日志
     * 
     * @param id 应付账单审核日志ID
     * @return 结果
     */
    public int deletePayableAuditLogById(Integer id);
 
    /**
     * 批量删除应付账单审核日志
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deletePayableAuditLogByIds(Integer[] ids);
}