保誠-保戶業務員媒合平台
wayne
2022-02-17 4394e4248455637ab7836756058ac872fdf4af10
pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java
@@ -6,9 +6,8 @@
import com.pollex.pam.enums.ContactStatusEnum;
@Service
public class AppointmentDTO {
   private Long id;
    private String phone;
    private String email;
@@ -21,9 +20,13 @@
    private String hopeContactTime;
    private String otherRequirement;
    private Instant appointmentDate;
    private Instant lastModifiedDate;
    private String agentNo;
    private Long customerId;
    private Instant consultantViewTime;
    private Instant consultantReadTime;
    private Instant contactTime;
   public Long getId() {
      return id;
   }
@@ -108,7 +111,29 @@
   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 getLastModifiedDate() {
        return lastModifiedDate;
    }
    public void setLastModifiedDate(Instant lastModifiedDate) {
        this.lastModifiedDate = lastModifiedDate;
    }
    public Instant getContactTime() {
        return contactTime;
    }
    public void setContactTime(Instant contactTime) {
        this.contactTime = contactTime;
    }
}