package cn.seecoder.build.server.service; import cn.seecoder.build.model.vo.PipelineVO; import cn.seecoder.build.server.util.ServiceException; import java.util.List; public interface PipelineService { PipelineVO createOrUpdate(PipelineVO vo) throws ServiceException; void delete(Integer id); List getAll() throws ServiceException; PipelineVO getDetailById(Integer id) throws ServiceException; }