ApplyJob.java
package XiaoYuJob.job;
/**
* 所申请工作类
*/
public class ApplyJob {
private int jobid; //工作编号
private String sname; //申请者姓名
private String jobName; //职位名称
private String salary; //薪金
private String other; //其它
private String ptime; //发布日期
private String atime; //截至日期
private String specialty;//特长
public ApplyJob() {
}
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 getJobName() {
return jobName;
}
public void setJobName(String job) {
this.jobName = job;
}
public String getSalary() {
return salary;
}
public void setSalary(String salary) {
this.salary = salary;
}
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;
}
}