package com.pollex.pam.service.dto;
|
|
import java.time.Instant;
|
|
import com.pollex.pam.enums.SatisfactionStatusEnum;
|
import com.pollex.pam.enums.SatisfactionTypeEnum;
|
|
public class SatisfactionDTO {
|
|
private Long id;
|
private Instant createdDate;
|
private Instant lastModifiedDate;
|
private Long customerId;
|
private String agentNo;
|
private SatisfactionStatusEnum status;
|
private Float score;
|
private Long appointmentId;
|
private String customerName;
|
private String agentName;
|
private SatisfactionTypeEnum type;
|
|
public Long getId() {
|
return id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public Instant getCreatedDate() {
|
return createdDate;
|
}
|
public void setCreatedDate(Instant createdDate) {
|
this.createdDate = createdDate;
|
}
|
public Instant getLastModifiedDate() {
|
return lastModifiedDate;
|
}
|
public void setLastModifiedDate(Instant lastModifiedDate) {
|
this.lastModifiedDate = lastModifiedDate;
|
}
|
public Long getCustomerId() {
|
return customerId;
|
}
|
public void setCustomerId(Long customerId) {
|
this.customerId = customerId;
|
}
|
public String getAgentNo() {
|
return agentNo;
|
}
|
public void setAgentNo(String agentNo) {
|
this.agentNo = agentNo;
|
}
|
public SatisfactionStatusEnum getStatus() {
|
return status;
|
}
|
public void setStatus(SatisfactionStatusEnum status) {
|
this.status = status;
|
}
|
public Float getScore() {
|
return score;
|
}
|
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;
|
}
|
}
|