Added confidi in get all call response

This commit is contained in:
harish
2024-10-23 19:42:58 +05:30
parent c4c43ead95
commit 8f66b39663
2 changed files with 4 additions and 0 deletions

View File

@@ -601,6 +601,7 @@ public class CallDao {
dates.add(callEntity.getStartDate()); dates.add(callEntity.getStartDate());
dates.add(callEntity.getEndDate()); dates.add(callEntity.getEndDate());
callDetailsResponseBean.setDates(dates); callDetailsResponseBean.setDates(dates);
callDetailsResponseBean.setConfidi(callEntity.getConfidi());
callDetailsResponseBean.setDescriptionShort(callEntity.getDescriptionShort()); callDetailsResponseBean.setDescriptionShort(callEntity.getDescriptionShort());
callDetailsResponseBean.setDescriptionLong(callEntity.getDescriptionLong()); callDetailsResponseBean.setDescriptionLong(callEntity.getDescriptionLong());
callDetailsResponseBean.setStatus(CallStatusEnum.valueOf(callEntity.getStatus())); callDetailsResponseBean.setStatus(CallStatusEnum.valueOf(callEntity.getStatus()));
@@ -619,6 +620,7 @@ public class CallDao {
callDetailsResponseBean.setPhoneNumber(callEntity.getPhoneNumber()); callDetailsResponseBean.setPhoneNumber(callEntity.getPhoneNumber());
callDetailsResponseBean.setCreatedDate(callEntity.getCreatedDate()); callDetailsResponseBean.setCreatedDate(callEntity.getCreatedDate());
callDetailsResponseBean.setUpdatedDate(callEntity.getUpdatedDate()); callDetailsResponseBean.setUpdatedDate(callEntity.getUpdatedDate());
return callDetailsResponseBean; return callDetailsResponseBean;
} }

View File

@@ -20,6 +20,8 @@ public class CallDetailsResponseBean {
private List<LocalDateTime> dates; private List<LocalDateTime> dates;
private Boolean confidi;
private CallStatusEnum status; private CallStatusEnum status;
private Long regionId; private Long regionId;