zhuo
2024-07-23 5ed5f51d479989d5b2149b09c82b6b3ea495b589
cnas-server/src/main/java/com/yuanchu/mom/service/SealService.java
@@ -6,18 +6,18 @@
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);
}