保誠-保戶業務員媒合平台
pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
@@ -2,29 +2,28 @@
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;
    private String contactType;
    private String gender;
    private int age;
    private String age;
    private String job;
    private String requirement;
    private ContactStatusEnum communicateStatus;
    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;
   }
@@ -55,10 +54,10 @@
   public void setGender(String gender) {
      this.gender = gender;
   }
   public int getAge() {
   public String getAge() {
      return age;
   }
   public void setAge(int age) {
   public void setAge(String age) {
      this.age = age;
   }
   public String getJob() {
@@ -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;
    }
}