package job; /** *

Title:

*

Description: Student issue to apply for a job

*

Copyright: Copyright (c) 2004

*

Company: MR

* @author BWM * @version 1.0 */ public class Sjob { private int jobid; private String job; private String emolument; private String other; private String ptime; private String atime; private String specialty; private String sname; public Sjob() { } public int getJobid() { return jobid; } public void setJobid(int jobid) { this.jobid = jobid; } public String getSname() { return sname; } public void setSname(String sname) { this.sname = sname; } public String getSpecialty() { return specialty; } public void setSpecialty(String specialty) { this.specialty = specialty; } public String getJob() { return job; } public void setJob(String job) { this.job = job; } public String getEmolument() { return emolument; } public void setEmolument(String emolument) { this.emolument = emolument; } public String getOther() { return other; } public void setOther(String other) { this.other = other; } public String getPtime() { return ptime; } public void setPtime(String ptime) { this.ptime = ptime; } public String getAtime() { return atime; } public void setAtime(String atime) { this.atime = atime; } }