diff --git a/app/module/request_for_information_objection/mapper/request_for_information_objection.mapper.go b/app/module/request_for_information_objection/mapper/request_for_information_objection.mapper.go index eac7518..6fdeb97 100644 --- a/app/module/request_for_information_objection/mapper/request_for_information_objection.mapper.go +++ b/app/module/request_for_information_objection/mapper/request_for_information_objection.mapper.go @@ -8,16 +8,16 @@ import ( func RequestForInformationObjectionResponseMapper(requestForInformationObjectionReq *entity.RequestForInformationObjection) (requestForInformationObjectionRes *res.RequestForInformationObjectionResponse) { if requestForInformationObjectionReq != nil { requestForInformationObjectionRes = &res.RequestForInformationObjectionResponse{ - ID: requestForInformationObjectionReq.ID, - RequestForInformationId: requestForInformationObjectionReq.RequestForInformationId, - DocumentName: requestForInformationObjectionReq.DocumentName, - MainReason: requestForInformationObjectionReq.MainReason, - SecondaryReason: requestForInformationObjectionReq.SecondaryReason, - CreatedById: requestForInformationObjectionReq.CreatedById, - StatusId: requestForInformationObjectionReq.StatusId, - IsActive: requestForInformationObjectionReq.IsActive, - CreatedAt: requestForInformationObjectionReq.CreatedAt, - UpdatedAt: requestForInformationObjectionReq.UpdatedAt, + ID: requestForInformationObjectionReq.ID, + RequestForInformationItemId: requestForInformationObjectionReq.RequestForInformationItemId, + DocumentName: requestForInformationObjectionReq.DocumentName, + MainReason: requestForInformationObjectionReq.MainReason, + SecondaryReason: requestForInformationObjectionReq.SecondaryReason, + CreatedById: requestForInformationObjectionReq.CreatedById, + StatusId: requestForInformationObjectionReq.StatusId, + IsActive: requestForInformationObjectionReq.IsActive, + CreatedAt: requestForInformationObjectionReq.CreatedAt, + UpdatedAt: requestForInformationObjectionReq.UpdatedAt, } } return requestForInformationObjectionRes