保誠-保戶業務員媒合平台
wayne
2022-02-17 4394e4248455637ab7836756058ac872fdf4af10
pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java
@@ -1,10 +1,13 @@
package com.pollex.pam.service.dto;
import com.pollex.pam.enums.SatisfactionTypeEnum;
public class SatisfactionCustomerScoreDTO {
   private Long appointmentId;
   private Float score;
    private SatisfactionTypeEnum type;
   public Long getAppointmentId() {
      return appointmentId;
   }
@@ -17,6 +20,10 @@
   public void setScore(Float score) {
      this.score = score;
   }
    public SatisfactionTypeEnum getType() {
        return type;
    }
    public void setType(SatisfactionTypeEnum type) {
        this.type = type;
    }
}