feat: fixing request for information
This commit is contained in:
parent
e24c13367c
commit
48225227d1
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue