| | |
| | | |
| | | @CreatedDate |
| | | @Column(name = "appointment_date", updatable = false) |
| | | private Instant appointmentDate; |
| | | private Instant appointmentDate = Instant.now(); |
| | | |
| | | @LastModifiedDate |
| | | @Column(name = "last_modified_date") |
| | | private Instant lastModifiedDate; |
| | | private Instant lastModifiedDate = Instant.now(); |
| | | |
| | | @Column(name = "agent_no") |
| | | private String agentNo; |
| | |
| | | |
| | | @Column(name = "consultant_read_time") |
| | | private Instant consultantReadTime; |
| | | |
| | | @Column(name = "contact_time") |
| | | private Instant contactTime; |
| | | |
| | | @Enumerated(value = EnumType.STRING) |
| | | @Column(name = "status") |
| | |
| | | this.consultantReadTime = consultantReadTime; |
| | | } |
| | | |
| | | public Instant getContactTime() { |
| | | return contactTime; |
| | | } |
| | | |
| | | public void setContactTime(Instant markCommunicateTime) { |
| | | this.contactTime = markCommunicateTime; |
| | | } |
| | | |
| | | public AppointmentStatusEnum getStatus() { |
| | | return status; |
| | | } |