19 lines
377 B
Java
19 lines
377 B
Java
public class EmployeeCategory {
|
|
|
|
private int categoryID;
|
|
private String categoryName;
|
|
public int getCategoryID() {
|
|
return categoryID;
|
|
}
|
|
public void setCategoryID(int categoryID) {
|
|
this.categoryID = categoryID;
|
|
}
|
|
public String getCategoryName() {
|
|
return categoryName;
|
|
}
|
|
public void setCategoryName(String categoryName) {
|
|
this.categoryName = categoryName;
|
|
}
|
|
|
|
}
|