Notice
Recent Posts
Recent Comments
Link
«   2025/03   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

EmployeeService 본문

JSP/SEARCH

EmployeeService

GAWON 2023. 6. 12. 17:08
package org.joonzis.service;

import java.util.List;
import java.util.Map;

import org.joonzis.vo.EmployeeVO;

public interface EmployeeService {
	public List<EmployeeVO> getALL();
	public List<EmployeeVO> getOne(int department_id);	//dept
	public List<EmployeeVO> gettwo(Map<String, String> map);
	
}

'JSP > SEARCH' 카테고리의 다른 글

EmployeeVO  (0) 2023.06.12
EmployeeServiceImpl  (0) 2023.06.12
employees  (0) 2023.06.12
sqlmap  (0) 2023.06.12
DBService  (0) 2023.06.12