Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
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

EmployeeVO 본문

JSP/SEARCH

EmployeeVO

GAWON 2023. 6. 12. 17:09
package org.joonzis.vo;

import java.sql.Date;

public class EmployeeVO {
	private int salary;
	private double commission_pct;
	private int employee_id,manager_id,department_id;
	private String first_name,last_name,email,phone_number,job_id;
	private Date hire_date;
	
	public EmployeeVO() {}
	
	public EmployeeVO(int salary, double commission_pct, int employee_id, int manager_id, int department_id,
			String first_name, String last_name, String email, String phone_number, String job_id, Date hire_date) {
		super();
		this.salary = salary;
		this.commission_pct = commission_pct;
		this.employee_id = employee_id;
		this.manager_id = manager_id;
		this.department_id = department_id;
		this.first_name = first_name;
		this.last_name = last_name;
		this.email = email;
		this.phone_number = phone_number;
		this.job_id = job_id;
		this.hire_date = hire_date;
	}

	public int getSalary() {
		return salary;
	}

	public void setSalary(int salary) {
		this.salary = salary;
	}

	public double getCommission_pct() {
		return commission_pct;
	}

	public void setCommission_pct(double commission_pct) {
		this.commission_pct = commission_pct;
	}

	public int getEmployee_id() {
		return employee_id;
	}

	public void setEmployee_id(int employee_id) {
		this.employee_id = employee_id;
	}

	public int getManager_id() {
		return manager_id;
	}

	public void setManager_id(int manager_id) {
		this.manager_id = manager_id;
	}

	public int getDepartment_id() {
		return department_id;
	}

	public void setDepartment_id(int department_id) {
		this.department_id = department_id;
	}

	public String getFirst_name() {
		return first_name;
	}

	public void setFirst_name(String first_name) {
		this.first_name = first_name;
	}

	public String getLast_name() {
		return last_name;
	}

	public void setLast_name(String last_name) {
		this.last_name = last_name;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getPhone_number() {
		return phone_number;
	}

	public void setPhone_number(String phone_number) {
		this.phone_number = phone_number;
	}

	public String getJob_id() {
		return job_id;
	}

	public void setJob_id(String job_id) {
		this.job_id = job_id;
	}

	public Date getHire_date() {
		return hire_date;
	}

	public void setHire_date(Date hire_date) {
		this.hire_date = hire_date;
	}
	
	
}

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

daptList  (0) 2023.06.12
allList  (0) 2023.06.12
EmployeeServiceImpl  (0) 2023.06.12
EmployeeService  (0) 2023.06.12
employees  (0) 2023.06.12