| | |
| | | package com.pollex.pam.service.dto; |
| | | |
| | | import java.time.Instant; |
| | | import java.util.List; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.EnumType; |
| | | import javax.persistence.Enumerated; |
| | | |
| | | import com.pollex.pam.domain.AppointmentMemo; |
| | | import com.pollex.pam.enums.ContactStatusEnum; |
| | | |
| | | public class AppointmentCustomerViewDTO { |
| | |
| | | private String hopeContactTime; |
| | | private String otherRequirement; |
| | | private Instant appointmentDate; |
| | | private Instant lastModifiedDate; |
| | | private String agentNo; |
| | | private Long customerId; |
| | | private String name; |
| | | private Instant consultantViewTime; |
| | | private Instant consultantReadTime; |
| | | private Instant contactTime; |
| | | private Float satisfactionScore; |
| | | private List<AppointmentMemo> appointmentMemoList; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | |
| | | public void setAppointmentDate(Instant appointmentDate) { |
| | | this.appointmentDate = appointmentDate; |
| | | } |
| | | public String getAgentNo() { |
| | | public Instant getLastModifiedDate() { |
| | | return lastModifiedDate; |
| | | } |
| | | public void setLastModifiedDate(Instant lastModifiedDate) { |
| | | this.lastModifiedDate = lastModifiedDate; |
| | | } |
| | | public String getAgentNo() { |
| | | return agentNo; |
| | | } |
| | | public void setAgentNo(String agentNo) { |
| | |
| | | public void setConsultantReadTime(Instant consultantReadTime) { |
| | | this.consultantReadTime = consultantReadTime; |
| | | } |
| | | public Instant getContactTime() { |
| | | return contactTime; |
| | | } |
| | | public void setContactTime(Instant contactTime) { |
| | | this.contactTime = contactTime; |
| | | } |
| | | public Float getSatisfactionScore() { |
| | | return satisfactionScore; |
| | | } |
| | | public void setSatisfactionScore(Float satisfactionScore) { |
| | | this.satisfactionScore = satisfactionScore; |
| | | } |
| | | public List<AppointmentMemo> getAppointmentMemoList() { |
| | | return appointmentMemoList; |
| | | } |
| | | public void setAppointmentMemoList(List<AppointmentMemo> appointmentMemoList) { |
| | | this.appointmentMemoList = appointmentMemoList; |
| | | } |
| | | |
| | | |
| | | } |