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

📄 istipenddao.java

📁 07年做得人力资源管理系统
💻 JAVA
字号:
package com.buat.hr.stipend;

import java.util.ArrayList;
import java.util.Vector;

public interface IStipendDAO {

	public ArrayList  QueryStipend(int beginIndex,int endIndex);	//查询所有人
	public int       QueryStipendcount();//查询Stipend table of tatal count
	public boolean   AddStipend(Stipend Stipend);
	public boolean   UpdateStipend(Stipend stipend,int id);
	public boolean   DeletStipend(int id);
	public Stipend  QueryStipendById(int id); //通过ID 查员工数目
	
	
	///
	

}

⌨️ 快捷键说明

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