
public class Employee {

	private String name;
	private int employeeId;	// (1-10000)
	private String jobTitle;
	private int level;		// (1, 2, 3)
}
