idepartmentdao.java
来自「基于J2EE的网络物流系统 用户操作: 1. 录入出库商品信息 2. 查询」· Java 代码 · 共 15 行
JAVA
15 行
package com.logistic.dao;
import java.util.Vector;
public interface IDepartmentDAO {
public int AddDepartment(String depaid,String depaname);
public Vector DepartmentSearch(String strsql,int page);
public int DelDepartment(String depaid);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?