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