| | |
| | | * @return
|
| | | * @throws HelpCenterException
|
| | | */
|
| | | public void save(HelpClass helpClass) throws HelpClassException;
|
| | | public void save(HelpClass helpClass, MultipartFile file) throws HelpClassException,Exception;
|
| | |
|
| | | /**
|
| | | * 查询
|
| | |
| | | */
|
| | | public List<HelpClass> getProvidedClass() throws HelpClassException;
|
| | |
|
| | |
|
| | | /**
|
| | | * 版本设置
|
| | | * @param id
|
| | | * @param versions
|
| | | * @throws HelpClassException
|
| | | */
|
| | | public void setVersions(Long id, List<Long> versions) throws HelpClassException;
|
| | |
|
| | | /**
|
| | | * 状态切换
|
| | | * @param id
|
| | | * @throws HelpClassException
|
| | | */
|
| | | public void switchState(Long id) throws HelpClassException;
|
| | |
|
| | |
|
| | | }
|