f0bc26b9c386001b1e499899eff7cdd5
来自「jsf开发的简单博客」· 代码 · 共 20 行
TXT
20 行
package com.tangjun.data;
import java.util.List;
import com.tangjun.web.bo.BlogEntry;
public interface IBlogDao {
public BlogEntry getBlogEntry(Integer uid);
public boolean addBlogEntry(BlogEntry blogEntry);
public boolean delBlogEntry(Integer uid);
public boolean updateBlogEntry(BlogEntry blogEntry);
public List getAllBlogEntry();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?