保誠-保戶業務員媒合平台
wayne
2021-12-03 82e2a62e7c90cc191f9e2ebc569fe3a3663b68b0
pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
@@ -2,14 +2,10 @@
import java.time.Instant;
import javax.persistence.Column;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import com.pollex.pam.enums.ContactStatusEnum;
public class AppointmentCustomerViewDTO {
   private Long id;
    private String phone;
    private String email;
@@ -22,9 +18,12 @@
    private String hopeContactTime;
    private String otherRequirement;
    private Instant appointmentDate;
    private Instant lastModifiedDate;
    private String agentNo;
    private Long customerId;
    private String name;
    private Instant consultantViewTime;
    private Instant consultantReadTime;
   public Long getId() {
      return id;
   }
@@ -97,7 +96,13 @@
   public void setAppointmentDate(Instant appointmentDate) {
      this.appointmentDate = appointmentDate;
   }
   public String getAgentNo() {
    public Instant getLastModifiedDate() {
        return lastModifiedDate;
    }
    public void setLastModifiedDate(Instant lastModifiedDate) {
        this.lastModifiedDate = lastModifiedDate;
    }
    public String getAgentNo() {
      return agentNo;
   }
   public void setAgentNo(String agentNo) {
@@ -115,6 +120,16 @@
   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;
    }
}