📄 clothesadditiondao.java
字号:
package dao.clothesAdditionDao;
import java.util.Vector;
import dao.common.DbException;
public interface ClothesAdditionDao {
public boolean registAdditionInfo(String content,int type) throws DbException;
public Vector getClothesBrands() throws DbException;
public Vector getClothesAccessoriess() throws DbException;
public Vector getClothesColors() throws DbException;
public Vector getClothesFlaws() throws DbException;
public boolean deleteAdditionInfo(String content,int type) throws DbException;
public boolean updateAdditionInfo(String newContent,String oldContent,int type) throws DbException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -