保誠-保戶業務員媒合平台
Jack
2021-12-01 2f0789c087589a053f6c80e3bfb17b0a4c2c4514
pamapi/src/main/java/com/pollex/pam/domain/AppointmentCustomerView.java
@@ -65,6 +65,12 @@
   @Column(name = "customer_id")
    private Long customerId;
   
    @Column(name = "consultant_view_time")
    private Instant consultantViewTime;
    @Column(name = "consultant_read_time")
    private Instant consultantReadTime;
   @Column(name = "name")
    private String name;
@@ -180,6 +186,22 @@
      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 String getName() {
      return name;
   }
@@ -187,7 +209,5 @@
   public void setName(String name) {
      this.name = name;
   }
   
}