| | |
| | | |
| | | @Service |
| | | public class AppointmentDTO { |
| | | |
| | | |
| | | private Long id; |
| | | private String phone; |
| | | private String email; |
| | |
| | | private Instant appointmentDate; |
| | | private String agentNo; |
| | | private Long customerId; |
| | | |
| | | private Instant consultantViewTime; |
| | | private Instant consultantReadTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | |
| | | public void setCustomerId(Long customerId) { |
| | | this.customerId = customerId; |
| | | } |
| | | |
| | | |
| | | |
| | | public Instant getConsultantViewTime() { |
| | | return consultantViewTime; |
| | | } |
| | | public void setConsultantViewTime(Instant consultantViewTime) { |
| | | this.consultantViewTime = consultantViewTime; |
| | | } |
| | | public Instant getConsultantReadTime() { |
| | | return consultantReadTime; |
| | | } |
| | | public void setConsultantReadTime(Instant consultantReadTime) { |
| | | this.consultantReadTime = consultantReadTime; |
| | | } |
| | | } |