| | |
| | | package com.pollex.pam.service.dto; |
| | | |
| | | import com.pollex.pam.enums.GenderEnum; |
| | | import com.pollex.pam.enums.SeniorityQueryEnum; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | private String area; |
| | | private List<String> requirements; |
| | | private String otherRequirement; |
| | | private String seniority; |
| | | private SeniorityQueryEnum seniority; |
| | | private List<String> popularTags; |
| | | private String otherPopularTags; |
| | | |
| | |
| | | this.otherRequirement = otherRequirement; |
| | | } |
| | | |
| | | public String getSeniority() { |
| | | public SeniorityQueryEnum getSeniority() { |
| | | return seniority; |
| | | } |
| | | |
| | | public void setSeniority(String seniority) { |
| | | public void setSeniority(SeniorityQueryEnum seniority) { |
| | | this.seniority = seniority; |
| | | } |
| | | |