package cn.seecoder.paas.service; import cn.seecoder.paas.service.model.vo.ApplicationVO; import cn.seecoder.paas.util.ServiceException; import java.util.List; public interface ApplicationService { ApplicationVO createOrUpdate(ApplicationVO vo) throws ServiceException; void delete(Integer id); List getAll(); ApplicationVO getDetailById(Integer id) throws ServiceException; }