DispatchNoteMapper.java
2.0 KB
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
package com.sunyo.wlpt.dispatch.mapper;
import com.sunyo.wlpt.dispatch.domain.DispatchNote;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @author 子诚
* Description:
* 时间:2020/4/22 15:32
*/
@Mapper
public interface DispatchNoteMapper {
/**
* 分页查询,调度记录列表
*
* @param dispatchNote
* @return
*/
List<DispatchNote> selectVehicleInfoList(@Param("dispatchNote") DispatchNote dispatchNote);
/**
* 删除,根据主键
*
* @param id
* @return
*/
int deleteByPrimaryKey(String id);
/**
* 增加
*
* @param record
* @return
*/
int insert(DispatchNote record);
/**
* 增加或者更新
*
* @param record
* @return
*/
int insertOrUpdate(DispatchNote record);
/**
* 增加或者更新,选择性
*
* @param record
* @return
*/
int insertOrUpdateSelective(DispatchNote record);
/**
* 插入(增加),选择性
*
* @param record
* @return
*/
int insertSelective(DispatchNote record);
/**
* 根据主键查询
*
* @param id
* @return
*/
DispatchNote selectByPrimaryKey(String id);
/**
* 更新,选择性,根据主键
*
* @param record
* @return
*/
int updateByPrimaryKeySelective(DispatchNote record);
/**
* 更新,根据主键
*
* @param record
* @return
*/
int updateByPrimaryKey(DispatchNote record);
/**
* 批量更新
*
* @param list
* @return
*/
int updateBatch(List<DispatchNote> list);
/**
* 批量更新,选择性
*
* @param list
* @return
*/
int updateBatchSelective(List<DispatchNote> list);
/**
* 批量插入,选择性
*
* @param list
* @return
*/
int batchInsert(@Param("list") List<DispatchNote> list);
}