KeyInfoService.java
1.28 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
package com.ruoyi.service.key.info;
import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.domain.OrderEntity;
import com.ruoyi.domain.key.info.KeyInfo;
import java.util.Collection;
import java.util.List;
public interface KeyInfoService extends IService<KeyInfo> {
/**
* 分页查询
*/
IPage<KeyInfo> pageList(com.baomidou.mybatisplus.extension.plugins.pagination.Page<KeyInfo> page, KeyInfo entity, OrderEntity orderEntity);
/**
* 带条件查询
*/
List<KeyInfo> list(KeyInfo entity);
List<KeyInfo> listLikePlate(KeyInfo entity);
List<KeyInfo> list(Collection<String> codes);
List<KeyInfo> listPlateNums(Collection<String> plateNum);
List<KeyInfo> list(KeyInfo entity,Collection<String> plateNums);
/***
*用于页面选择
*/
List<KeyInfo> listOfSelect(KeyInfo entity);
/**
* 条件查询只返回一条数据的方法
*/
KeyInfo getOne(KeyInfo entity);
Integer countId(KeyInfo entity);
/**
* 插入有值的列
*/
int insertSelective(KeyInfo entity);
/***插入数据*/
boolean insert(KeyInfo entity);
/**
* 根据主键修改数据
*/
boolean updateByPrimaryKey(KeyInfo entity);
}