first commit

This commit is contained in:
revlis44
2025-12-03 10:41:27 +09:00
commit a6b37aa445
2430 changed files with 175919 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* egovframework.cms.board.service.HmsBrdCommentService
* egovframework.cms.board.vo.HmsBrdCommentDefaultVO
* egovframework.cms.board.vo.HmsBrdCommentVO
* javax.servlet.http.HttpServletRequest
*/
package egovframework.cms.board.service;
import egovframework.cms.board.vo.HmsBrdCommentDefaultVO;
import egovframework.cms.board.vo.HmsBrdCommentVO;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
public interface HmsBrdCommentService {
public String insertHmsBrdComment(HmsBrdCommentVO var1, HttpServletRequest var2) throws Exception;
public void updateHmsBrdComment(HmsBrdCommentVO var1) throws Exception;
public void deleteHmsBrdComment(HmsBrdCommentVO var1, HttpServletRequest var2) throws Exception;
public HmsBrdCommentVO selectHmsBrdComment(HmsBrdCommentVO var1) throws Exception;
public List selectHmsBrdCommentList(HmsBrdCommentDefaultVO var1) throws Exception;
public int selectHmsBrdCommentListTotCnt(HmsBrdCommentDefaultVO var1);
}