#37 java: resume - domain
This commit is contained in:
61
java/api/src/main/java/kr/excel/resume/Career.java
Normal file
61
java/api/src/main/java/kr/excel/resume/Career.java
Normal file
@@ -0,0 +1,61 @@
|
||||
package kr.excel.resume;
|
||||
|
||||
public class Career {
|
||||
|
||||
private String workPeriod;
|
||||
private String companyName;
|
||||
private String jobTitle;
|
||||
private String employmentYears;
|
||||
|
||||
public Career() {
|
||||
}
|
||||
|
||||
public Career(String workPeriod, String companyName, String jobTitle, String employmentYears) {
|
||||
this.workPeriod = workPeriod;
|
||||
this.companyName = companyName;
|
||||
this.jobTitle = jobTitle;
|
||||
this.employmentYears = employmentYears;
|
||||
}
|
||||
|
||||
public String getWorkPeriod() {
|
||||
return workPeriod;
|
||||
}
|
||||
|
||||
public void setWorkPeriod(String workPeriod) {
|
||||
this.workPeriod = workPeriod;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getJobTitle() {
|
||||
return jobTitle;
|
||||
}
|
||||
|
||||
public void setJobTitle(String jobTitle) {
|
||||
this.jobTitle = jobTitle;
|
||||
}
|
||||
|
||||
public String getEmploymentYears() {
|
||||
return employmentYears;
|
||||
}
|
||||
|
||||
public void setEmploymentYears(String employmentYears) {
|
||||
this.employmentYears = employmentYears;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Career{" +
|
||||
"workPeriod='" + workPeriod + '\'' +
|
||||
", companyName='" + companyName + '\'' +
|
||||
", jobTitle='" + jobTitle + '\'' +
|
||||
", employmentYears='" + employmentYears + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
61
java/api/src/main/java/kr/excel/resume/Education.java
Normal file
61
java/api/src/main/java/kr/excel/resume/Education.java
Normal file
@@ -0,0 +1,61 @@
|
||||
package kr.excel.resume;
|
||||
|
||||
public class Education {
|
||||
|
||||
private String graduationYear;
|
||||
private String schoolName;
|
||||
private String major;
|
||||
private String graduationStatus;
|
||||
|
||||
public Education() {
|
||||
}
|
||||
|
||||
public Education(String graduationYear, String schoolName, String major, String graduationStatus) {
|
||||
this.graduationYear = graduationYear;
|
||||
this.schoolName = schoolName;
|
||||
this.major = major;
|
||||
this.graduationStatus = graduationStatus;
|
||||
}
|
||||
|
||||
public String getGraduationYear() {
|
||||
return graduationYear;
|
||||
}
|
||||
|
||||
public void setGraduationYear(String graduationYear) {
|
||||
this.graduationYear = graduationYear;
|
||||
}
|
||||
|
||||
public String getSchoolName() {
|
||||
return schoolName;
|
||||
}
|
||||
|
||||
public void setSchoolName(String schoolName) {
|
||||
this.schoolName = schoolName;
|
||||
}
|
||||
|
||||
public String getMajor() {
|
||||
return major;
|
||||
}
|
||||
|
||||
public void setMajor(String major) {
|
||||
this.major = major;
|
||||
}
|
||||
|
||||
public String getGraduationStatus() {
|
||||
return graduationStatus;
|
||||
}
|
||||
|
||||
public void setGraduationStatus(String graduationStatus) {
|
||||
this.graduationStatus = graduationStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Education{" +
|
||||
"graduationYear='" + graduationYear + '\'' +
|
||||
", schoolName='" + schoolName + '\'' +
|
||||
", major='" + major + '\'' +
|
||||
", graduationStatus='" + graduationStatus + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
83
java/api/src/main/java/kr/excel/resume/PersonInfo.java
Normal file
83
java/api/src/main/java/kr/excel/resume/PersonInfo.java
Normal file
@@ -0,0 +1,83 @@
|
||||
package kr.excel.resume;
|
||||
|
||||
public class PersonInfo {
|
||||
|
||||
private String photo;
|
||||
private String name;
|
||||
private String email;
|
||||
private String address;
|
||||
private String phoneNumber;
|
||||
private String birthDate;
|
||||
|
||||
public PersonInfo() {
|
||||
}
|
||||
|
||||
public PersonInfo(String photo, String name, String email, String address, String phoneNumber, String birthDate) {
|
||||
this.photo = photo;
|
||||
this.name = name;
|
||||
this.email = email;
|
||||
this.address = address;
|
||||
this.phoneNumber = phoneNumber;
|
||||
this.birthDate = birthDate;
|
||||
}
|
||||
|
||||
public String getPhoto() {
|
||||
return photo;
|
||||
}
|
||||
|
||||
public void setPhoto(String photo) {
|
||||
this.photo = photo;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getPhoneNumber() {
|
||||
return phoneNumber;
|
||||
}
|
||||
|
||||
public void setPhoneNumber(String phoneNumber) {
|
||||
this.phoneNumber = phoneNumber;
|
||||
}
|
||||
|
||||
public String getBirthDate() {
|
||||
return birthDate;
|
||||
}
|
||||
|
||||
public void setBirthDate(String birthDate) {
|
||||
this.birthDate = birthDate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "PersonInfo{" +
|
||||
"photo='" + photo + '\'' +
|
||||
", name='" + name + '\'' +
|
||||
", email='" + email + '\'' +
|
||||
", address='" + address + '\'' +
|
||||
", phoneNumber='" + phoneNumber + '\'' +
|
||||
", birthDate='" + birthDate + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user