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