| 1234567891011121314151617 |
- 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<PipelineVO> getAll() throws ServiceException;
- PipelineVO getDetailById(Integer id) throws ServiceException;
- }
|