zss
2025-03-28 aa056390e38523e73c3e91ee15669f0d1838a1eb
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);
}