| | |
| | | |
| | | import com.pollex.pam.enums.ContactStatusEnum; |
| | | |
| | | @Service |
| | | public class AppointmentDTO { |
| | | |
| | | private Long id; |
| | |
| | | private String hopeContactTime; |
| | | private String otherRequirement; |
| | | private Instant appointmentDate; |
| | | private Instant lastModifiedDate; |
| | | private String agentNo; |
| | | private Long customerId; |
| | | private Instant consultantViewTime; |
| | | private Instant consultantReadTime; |
| | | private Instant contactTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | |
| | | public void setConsultantReadTime(Instant consultantReadTime) { |
| | | this.consultantReadTime = consultantReadTime; |
| | | } |
| | | public Instant getLastModifiedDate() { |
| | | return lastModifiedDate; |
| | | } |
| | | |
| | | public void setLastModifiedDate(Instant lastModifiedDate) { |
| | | this.lastModifiedDate = lastModifiedDate; |
| | | } |
| | | public Instant getContactTime() { |
| | | return contactTime; |
| | | } |
| | | public void setContactTime(Instant contactTime) { |
| | | this.contactTime = contactTime; |
| | | } |
| | | } |