DriverHealthyService.java
1.07 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
package com.ruoyi.service.driver.healthy;
import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import com.ruoyi.domain.OrderEntity;
import com.ruoyi.domain.driver.healthy.DriverHealthy;
public interface DriverHealthyService extends IService<DriverHealthy> {
/**
* 分页查询
*/
IPage<DriverHealthy> pageList(com.baomidou.mybatisplus.extension.plugins.pagination.Page<DriverHealthy> page, DriverHealthy entity, OrderEntity orderEntity);
/**
* 带条件查询
*/
List<DriverHealthy> list(DriverHealthy entity);
/**
* 条件查询只返回一条数据的方法
*/
DriverHealthy getOne(DriverHealthy entity);
Integer countId(DriverHealthy entity);
/**
* 插入有值的列
*/
int insertSelective(DriverHealthy entity);
/***插入数据*/
boolean insert(DriverHealthy entity);
/**
* 根据主键修改数据
*/
boolean updateByPrimaryKey(DriverHealthy entity);
public boolean deleteById(Long id);
}