Added callStatus in get api of form
This commit is contained in:
@@ -73,6 +73,7 @@ public class FormDao {
|
|||||||
formResponseBean.setContent(Utils.convertJsonStringToList(formEntity.getContent(), ContentResponseBean.class));
|
formResponseBean.setContent(Utils.convertJsonStringToList(formEntity.getContent(), ContentResponseBean.class));
|
||||||
formResponseBean.setLabel(formEntity.getLabel());
|
formResponseBean.setLabel(formEntity.getLabel());
|
||||||
formResponseBean.setCallId(formEntity.getCall().getId());
|
formResponseBean.setCallId(formEntity.getCall().getId());
|
||||||
|
formResponseBean.setCallStatus(formEntity.getCall().getStatus());
|
||||||
return formResponseBean;
|
return formResponseBean;
|
||||||
}
|
}
|
||||||
public FormResponseBean createForm(Long callId,FormRequest formRequest){
|
public FormResponseBean createForm(Long callId,FormRequest formRequest){
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ public class FormResponseBean {
|
|||||||
|
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
private String callStatus;
|
||||||
|
|
||||||
private String label;
|
private String label;
|
||||||
|
|
||||||
private Long callId;
|
private Long callId;
|
||||||
|
|||||||
Reference in New Issue
Block a user