1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.yuanchu.mom.service;
|
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.yuanchu.mom.pojo.Laboratory;
| import com.yuanchu.mom.pojo.Seal;
|
| import java.util.Map;
|
| public interface SealService extends IService<Seal> {
|
| //新增
| int addSeal(Seal seal);
| //删除
| int delSeal(int id);
| //更新
| int upSeal(Seal seal);
| //查询
| Map<String, Object> selectSeal(Page page, Seal seal);
|
|
| }
|
|