保誠-保戶業務員媒合平台
wayne
2021-12-01 3e1d9a15ec902447f566e7b0dea9d0503230288c
pamapi/src/main/java/com/pollex/pam/domain/Appointment.java
@@ -64,6 +64,12 @@
   @Column(name = "customer_id")
    private Long customerId;
    @Column(name = "consultant_view_time")
    private Instant consultantViewTime;
    @Column(name = "consultant_read_time")
    private Instant consultantReadTime;
   public Long getId() {
      return id;
   }
@@ -175,4 +181,20 @@
   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;
    }
}