zouyu
2024-08-06 c22590d2f454f23cbdbd17cb4480a0d8982a0f2e
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);
}