DriverInfoService.java
932 字节
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
package com.sunyo.wlpt.dispatch.service;
import com.github.pagehelper.PageInfo;
import com.sunyo.wlpt.dispatch.domain.DriverInfo;
import java.util.List;
/**
* @author 子诚
* Description:
* 时间:2020/4/21 15:16
*/
public interface DriverInfoService {
/**
* 分页查询驾驶员信息列表
*/
PageInfo selectDriverInfoList(DriverInfo driverInfo, Integer pageNum, Integer pageSize);
int deleteByPrimaryKey(String id);
int insert(DriverInfo record);
int insertOrUpdate(DriverInfo record);
int insertOrUpdateSelective(DriverInfo record);
int insertSelective(DriverInfo record);
DriverInfo selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(DriverInfo record);
int updateByPrimaryKey(DriverInfo record);
int updateBatch(List<DriverInfo> list);
int updateBatchSelective(List<DriverInfo> list);
int batchInsert(List<DriverInfo> list);
}