LingangSchedulingService.java
1.13 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.lin.gang;
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.lin.gang.LingangScheduling;
/**
* Service接口
*/
public interface LingangSchedulingService extends IService<LingangScheduling> {
/**
* 分页查询
*/
IPage<LingangScheduling> pageList(com.baomidou.mybatisplus.extension.plugins.pagination.Page<LingangScheduling> page, LingangScheduling entity, OrderEntity orderEntity);
/**
* 带条件查询
*/
List<LingangScheduling> list(LingangScheduling entity);
/**
* 条件查询只返回一条数据的方法
*/
LingangScheduling getOne(LingangScheduling entity);
Integer countId(LingangScheduling entity);
/**
* 插入有值的列
*/
int insertSelective(LingangScheduling entity);
/***插入数据*/
boolean insert(LingangScheduling entity);
/**
* 根据主键修改数据
*/
boolean updateByPrimaryKey(LingangScheduling entity);
boolean deleteById(Integer id);
}