| | |
| | | import com.pollex.pam.enums.ContactStatusEnum; |
| | | |
| | | public class AppointmentCustomerViewDTO { |
| | | |
| | | |
| | | private Long id; |
| | | private String phone; |
| | | private String email; |
| | |
| | | private String agentNo; |
| | | private Long customerId; |
| | | private String name; |
| | | private Instant consultantViewTime; |
| | | private Instant consultantReadTime; |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | |
| | | 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; |
| | | } |
| | | } |