File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.cop.cmt.service;
import java.util.List;
import java.util.Map;
import egovframework.rte.fdl.cmmn.exception.FdlException;
public interface EgovArticleCommentService {
Map<String, Object> selectArticleCommentList(CommentVO commentVO) throws Exception;
List<?> selectArticleCommentListAll(CommentVO commentVO) throws Exception;
void insertArticleComment(Comment comment) throws FdlException;
void deleteArticleComment(CommentVO commentVO) throws Exception;
CommentVO selectArticleCommentDetail(CommentVO commentVO) throws Exception;
void updateArticleComment(Comment comment) throws Exception;
List<CommentVO> selectArticleCommentListAllList(CommentVO commentVO) throws Exception;
}