📄 releaseservice.java
字号:
/*
* Created on 2007-9-6
* Last modified on 2007-9-12
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.release;
import com.yeqiangwei.club.release.exception.ReleaseException;
import com.yeqiangwei.club.service.model.TopicModel;
public interface ReleaseService {
public void createIndex() throws ReleaseException;
/**
*
* @param forumId
* @param startpage
* @param rows
* @throws ReleaseException
*/
public void createList(int forumId) throws ReleaseException;
public void createPage(TopicModel topicModel) throws ReleaseException;
/**
*
* @param forumId
* @param createAll 创建全部 否则 从上次创建ID开始创建后面更新的页面
* @throws ReleaseException
*/
public void createPages(int forumId, boolean createAll) throws ReleaseException;
public String getState();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -