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