| 对比新文件 |
| | |
| | | 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); |
| | | |
| | | |
| | | } |