保誠-保戶業務員媒合平台
wayne
2021-12-02 e8a53c081980ce1a5a9e1a36c822edab15ea42e0
pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java
@@ -8,7 +8,7 @@
@Service
public class AppointmentDTO {
   private Long id;
    private String phone;
    private String email;
@@ -23,7 +23,10 @@
    private Instant appointmentDate;
    private String agentNo;
    private Long customerId;
    private Instant consultantViewTime;
    private Instant consultantReadTime;
    private Instant contactTime;
   public Long getId() {
      return id;
   }
@@ -108,7 +111,22 @@
   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;
    }
    public Instant getContactTime() {
        return contactTime;
    }
    public void setContactTime(Instant contactTime) {
        this.contactTime = contactTime;
    }
}