📄 zhaopindao.java
字号:
package com.relationinfo.dao;import java.util.List;import com.relationinfo.model.Zhaopin;public interface ZhaopinDAO extends DAO { /** * Retrieves all of the zhaopins */ public List getZhaopins(Zhaopin zhaopin); /** * Gets zhaopin's information based on primary key. An * ObjectRetrievalFailureException Runtime Exception is thrown if * nothing is found. * * @param zpcode the zhaopin's zpcode * @return zhaopin populated zhaopin object */ public Zhaopin getZhaopin(final String zpcode); /** * Saves a zhaopin's information * @param zhaopin the object to be saved */ public void saveZhaopin(Zhaopin zhaopin); /** * Removes a zhaopin from the database by zpcode * @param zpcode the zhaopin's zpcode */ public void removeZhaopin(final String zpcode);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -