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; } }