zss
2024-12-27 ebede85283906f52dd45d0755d22140538038ac3
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.List;
import java.util.Map;
 
public interface SealService extends IService<Seal> {
 
    //新增
    int addSeal(Seal seal);
 
    //查询
    Map<String, Object> selectSeal(Page page, Seal seal);
 
    List<Laboratory>  Laboratory(Integer id);
 
 
}