Crunchy
2024-04-23 4f986140a10e71c07c7001ccbcda6e93e17736b1
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
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.List;
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);
 
    List<Laboratory>  Laboratory(Integer id);
 
 
}