| | |
| | | private Float avgScore; |
| | | private ContactStatusEnum contactStatus; |
| | | private Instant updateTime; |
| | | private String role; |
| | | private String seniority; |
| | | private Long latestAppointmentId; |
| | | |
| | | public boolean isNewConsultant() { |
| | | if(updateTime != null){ |
| | |
| | | this.updateTime = updateTime; |
| | | } |
| | | |
| | | public String getRole() { |
| | | return role; |
| | | } |
| | | |
| | | public void setRole(String role) { |
| | | this.role = role; |
| | | } |
| | | |
| | | public String getSeniority() { |
| | | return seniority; |
| | | } |
| | |
| | | |
| | | public void setNewConsultant(boolean newConsultant) { |
| | | this.newConsultant = newConsultant; |
| | | } |
| | | |
| | | public Long getLatestAppointmentId() { |
| | | return latestAppointmentId; |
| | | } |
| | | |
| | | public void setLatestAppointmentId(Long latestAppointmentId) { |
| | | this.latestAppointmentId = latestAppointmentId; |
| | | } |
| | | } |