| | |
| | |
|
| | | import com.yeshi.fanli.entity.bus.help.HelpCenter;
|
| | | import com.yeshi.fanli.entity.bus.help.HelpInfo;
|
| | | import com.yeshi.fanli.exception.HelpCenterException;
|
| | | import com.yeshi.fanli.exception.config.HelpCenterException;
|
| | |
|
| | | public interface HelpCenterService {
|
| | |
|
| | |
| | | * @return
|
| | | * @throws Exception
|
| | | */
|
| | | public String save(HelpCenter helpCenter, String content, String html) throws Exception;
|
| | | public String save(HelpCenter helpCenter, String content, String html) throws HelpCenterException, Exception;
|
| | |
|
| | |
|
| | | /**
|
| | |
| | |
|
| | | public HelpInfo getHelpInfoCache(Long id) throws HelpCenterException;
|
| | |
|
| | | /**
|
| | | * 版本设置
|
| | | * @param id
|
| | | * @param versions
|
| | | * @throws HelpCenterException
|
| | | */
|
| | | public void setVersions(Long id, List<Long> versions) throws HelpCenterException;
|
| | |
|
| | |
|
| | | }
|