保誠-保戶業務員媒合平台
Tomas
2022-01-12 943b8dfc3fd82d76d46cde1834972270d4aa868a
pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
@@ -4,6 +4,8 @@
import java.util.List;
import com.pollex.pam.domain.AppointmentMemo;
import com.pollex.pam.domain.AppointmentNoticeLog;
import com.pollex.pam.domain.InterviewRecord;
import com.pollex.pam.enums.ContactStatusEnum;
public class AppointmentCustomerViewDTO {
@@ -29,6 +31,8 @@
    private Instant contactTime;
    private Float satisfactionScore;
    private List<AppointmentMemo> appointmentMemoList;
    private List<InterviewRecordDTO> interviewRecordDTOs;
    private List<AppointmentNoticeLog> appointmentNoticeLogs;
   public Long getId() {
      return id;
@@ -156,6 +160,18 @@
   public void setAppointmentMemoList(List<AppointmentMemo> appointmentMemoList) {
      this.appointmentMemoList = appointmentMemoList;
   }
   public List<InterviewRecordDTO> getInterviewRecordDTOs() {
      return interviewRecordDTOs;
   }
   public void setInterviewRecordDTOs(List<InterviewRecordDTO> interviewRecordDTOs) {
      this.interviewRecordDTOs = interviewRecordDTOs;
   }
   public List<AppointmentNoticeLog> getAppointmentNoticeLogs() {
      return appointmentNoticeLogs;
   }
   public void setAppointmentNoticeLogs(List<AppointmentNoticeLog> appointmentNoticeLogs) {
      this.appointmentNoticeLogs = appointmentNoticeLogs;
   }
    
    
}