From c00b3cb254ee519c960017d3f246be2274f722e5 Mon Sep 17 00:00:00 2001 From: LiuZihan <1353843969@qq.com> Date: Thu, 26 Mar 2026 20:11:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'project/Job.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/Job.java | 90 ------------------------------------------------ 1 file changed, 90 deletions(-) delete mode 100644 project/Job.java diff --git a/project/Job.java b/project/Job.java deleted file mode 100644 index 5e4d5ce..0000000 --- a/project/Job.java +++ /dev/null @@ -1,90 +0,0 @@ -package java01; - -public class Job { - private String title; - private String company; - private String salary; - private String location; - private String experience; - private String education; - private String skills; - - public Job(String title, String company, String salary, String location, String experience, String education, String skills) { - this.title = title; - this.company = company; - this.salary = salary; - this.location = location; - this.experience = experience; - this.education = education; - this.skills = skills; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getCompany() { - return company; - } - - public void setCompany(String company) { - this.company = company; - } - - public String getSalary() { - return salary; - } - - public void setSalary(String salary) { - this.salary = salary; - } - - public String getLocation() { - return location; - } - - public void setLocation(String location) { - this.location = location; - } - - public String getExperience() { - return experience; - } - - public void setExperience(String experience) { - this.experience = experience; - } - - public String getEducation() { - return education; - } - - public void setEducation(String education) { - this.education = education; - } - - public String getSkills() { - return skills; - } - - public void setSkills(String skills) { - this.skills = skills; - } - - @Override - public String toString() { - return "Job{" + - "title='" + title + '\'' + - ", company='" + company + '\'' + - ", salary='" + salary + '\'' + - ", location='" + location + '\'' + - ", experience='" + experience + '\'' + - ", education='" + education + '\'' + - ", skills='" + skills + '\'' + - '}'; - } -} \ No newline at end of file