| | |
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.help.HelpClass;
|
| | | import com.yeshi.fanli.exception.HelpCenterException;
|
| | | import com.yeshi.fanli.exception.HelpClassException;
|
| | | import com.yeshi.fanli.exception.config.HelpCenterException;
|
| | | import com.yeshi.fanli.exception.config.HelpClassException;
|
| | |
|
| | | public interface HelpClassService {
|
| | |
|
| | |
| | | * @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;
|
| | |
|
| | |
|
| | | }
|