⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employeedao.java

📁 固定资产管理系统包括一个基本的部分
💻 JAVA
字号:
package com.shenlong.assetmanage.dao;

import java.sql.SQLException;
import java.util.List;

import com.shenlong.assetmanage.domain.Employee;


public interface EmployeeDao {
	
	
	public int saveNewEmp (Employee emp) throws SQLException;
	
	
	public int getEmployeeCountByName(String empName) throws SQLException;
	
	
	public List<Employee> queryEmployeeByName(String empName, int currPage, int pageSize) throws SQLException;
	
	
	public int modifyEmployee(Employee employee) throws SQLException;
	
	
	public int deleteEmployeeById(int id) throws SQLException;
	
	
	
	public List<Employee> getAllEmployees() throws SQLException;
	
	
	public Employee queryEmployeeById(int id) throws SQLException;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -