Skip to content

Commit

Permalink
注释
Browse files Browse the repository at this point in the history
  • Loading branch information
ClayGminx committed Sep 12, 2022
1 parent e5df006 commit 1fd8ebc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/claygminx/common/Dict.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public static class General {
public final static String GITHUB_RESPONSE_TIMEOUT = "github.responseTimeout";
public final static String GITHUB_DOWNLOAD_TITLE = "github.downloadTitle";


// PPT
public final static String WORSHIP_MODEL_PREFIX = "worship.model.";
public final static String PPT_PROCEDURE_XML_PATH = "ppt.procedure.path";
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/claygminx/components/ScriptureService.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import claygminx.common.entity.ScriptureNumberEntity;
import claygminx.exception.ScriptureNumberException;

import static claygminx.common.Dict.*;

/**
* 经文服务
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
*/
public interface WorshipProcedureService {

/**
* 生成敬拜流程
* @param ppt PPT对象
* @param worshipEntity 敬拜参数实体
* @return 敬拜流程
* @throws FileServiceException 若读取定义敬拜流程的XML文件失败,则抛出此异常
*/
List<WorshipStep> generate(XMLSlideShow ppt, WorshipEntity worshipEntity) throws FileServiceException;

}

0 comments on commit 1fd8ebc

Please sign in to comment.