保誠-保戶業務員媒合平台
wayne
2022-02-10 d54da4786548ef4c4ea4d62b2754cfed2b24a698
pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java
@@ -3,6 +3,7 @@
import java.time.Instant;
import com.pollex.pam.enums.SatisfactionStatusEnum;
import com.pollex.pam.enums.SatisfactionTypeEnum;
public class SatisfactionDTO {
@@ -14,6 +15,10 @@
    private SatisfactionStatusEnum status;
    private Float score;
    private Long appointmentId;
    private String customerName;
    private String agentName;
    private SatisfactionTypeEnum type;
   public Long getId() {
      return id;
   }
@@ -56,6 +61,28 @@
   public void setScore(Float score) {
      this.score = score;
   }
   public Long getAppointmentId() {
      return appointmentId;
   }
   public void setAppointmentId(Long appointmentId) {
      this.appointmentId = appointmentId;
   }
   public String getCustomerName() {
      return customerName;
   }
   public void setCustomerName(String customerName) {
      this.customerName = customerName;
   }
   public String getAgentName() {
      return agentName;
   }
   public void setAgentName(String agentName) {
      this.agentName = agentName;
   }
    public SatisfactionTypeEnum getType() {
        return type;
    }
    public void setType(SatisfactionTypeEnum type) {
        this.type = type;
    }
}