📄 idataaccessobject.java
字号:
package com.lideedu.huang.addressBook.dao;
import com.lideedu.huang.addressBook.exceptions.DataAccessException;
import com.lideedu.huang.addressBook.pojos.ValueObject;
import com.lideedu.huang.addressBook.utils.PageBean;
public interface IDataAccessObject {
public PageBean findAll(String queryCondition,String queryKeyword,PageBean pageBean)throws DataAccessException;
public ValueObject findByPK(String primaryKey) throws DataAccessException;
public void insert(ValueObject insertRecord)throws DataAccessException;
public void update(ValueObject updateRecord) throws DataAccessException;
public void delete(ValueObject deleteRecord) throws DataAccessException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -