📄 commentservice.java
字号:
/**
* 版权声明 EasyJF, 版权所有 违者必究
* 版本号 0.1
*创建者:张钰
* 时 间:2006-4-6
* 描 述:创建
*/
package com.easyjf.news.logic;
import java.util.Collection;
import java.util.List;
import com.easyjf.news.model.Comment;
public interface CommentService {
boolean saveComment(Comment comment);
boolean updateComment(Comment comment);
boolean delComment(Comment comment);
List getComment();
List getCommBySql(String sql,Collection paras,int begin,int end);
Comment getCommentById(String id);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -