yujian
2019-12-19 626d711cb15896055c13fe344eb7fcc824589715
fanli/src/main/java/com/yeshi/fanli/service/inter/help/HelpCenterService.java
@@ -7,7 +7,7 @@
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 {
   
@@ -72,7 +72,7 @@
    * @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;
   
   /**
@@ -112,5 +112,13 @@
   
   public HelpInfo getHelpInfoCache(Long id) throws HelpCenterException;
   /**
    * 版本设置
    * @param id
    * @param versions
    * @throws HelpCenterException
    */
   public void setVersions(Long id, List<Long> versions) throws HelpCenterException;
   
}