zhangback
5 天以前 3974fad5d836431e417e99220cc07bb5b0aba331
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.TmsCarKeyDispatch;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 
/**
 * 车钥匙分发记录Mapper接口
 * 
 * @author ruoyi
 * @date 2025-12-08
 */
public interface TmsCarKeyDispatchMapper  extends BaseMapper<TmsCarKeyDispatch>
{
    /**
     * 查询车钥匙分发记录
     * 
     * @param id 车钥匙分发记录ID
     * @return 车钥匙分发记录
     */
    public TmsCarKeyDispatch selectTmsCarKeyDispatchById(Integer id);
 
    /**
     * 查询车钥匙分发记录 记录数
     *
     * @param tmsCarKeyDispatch 车钥匙分发记录
     * @return 车钥匙分发记录集合
     */
    public int selectTmsCarKeyDispatchCount(TmsCarKeyDispatch tmsCarKeyDispatch);
 
    /**
     * 查询车钥匙分发记录列表
     * 
     * @param tmsCarKeyDispatch 车钥匙分发记录
     * @return 车钥匙分发记录集合
     */
    public List<TmsCarKeyDispatch> selectTmsCarKeyDispatchList(TmsCarKeyDispatch tmsCarKeyDispatch);
 
    /**
     * 新增车钥匙分发记录
     * 
     * @param tmsCarKeyDispatch 车钥匙分发记录
     * @return 结果
     */
    public int insertTmsCarKeyDispatch(TmsCarKeyDispatch tmsCarKeyDispatch);
 
    /**
     * 新增车钥匙分发记录[批量]
     *
     * @param tmsCarKeyDispatchs 车钥匙分发记录
     * @return 结果
     */
    public int insertTmsCarKeyDispatchBatch(List<TmsCarKeyDispatch> tmsCarKeyDispatchs);
 
    /**
     * 修改车钥匙分发记录
     * 
     * @param tmsCarKeyDispatch 车钥匙分发记录
     * @return 结果
     */
    public int updateTmsCarKeyDispatch(TmsCarKeyDispatch tmsCarKeyDispatch);
 
    /**
     * 修改车钥匙分发记录[批量]
     *
     * @param tmsCarKeyDispatchs 车钥匙分发记录
     * @return 结果
     */
    public int updateTmsCarKeyDispatchBatch(List<TmsCarKeyDispatch> tmsCarKeyDispatchs);
 
    /**
     * 删除车钥匙分发记录
     * 
     * @param id 车钥匙分发记录ID
     * @return 结果
     */
    public int deleteTmsCarKeyDispatchById(Integer id);
 
    /**
     * 批量删除车钥匙分发记录
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsCarKeyDispatchByIds(Integer[] ids);
}