feat: fixing request for information
This commit is contained in:
parent
f491e2e9b0
commit
2db60b7cf1
|
|
@ -8,16 +8,16 @@ import (
|
||||||
func RequestForInformationObjectionResponseMapper(requestForInformationObjectionReq *entity.RequestForInformationObjection) (requestForInformationObjectionRes *res.RequestForInformationObjectionResponse) {
|
func RequestForInformationObjectionResponseMapper(requestForInformationObjectionReq *entity.RequestForInformationObjection) (requestForInformationObjectionRes *res.RequestForInformationObjectionResponse) {
|
||||||
if requestForInformationObjectionReq != nil {
|
if requestForInformationObjectionReq != nil {
|
||||||
requestForInformationObjectionRes = &res.RequestForInformationObjectionResponse{
|
requestForInformationObjectionRes = &res.RequestForInformationObjectionResponse{
|
||||||
ID: requestForInformationObjectionReq.ID,
|
ID: requestForInformationObjectionReq.ID,
|
||||||
RequestForInformationId: requestForInformationObjectionReq.RequestForInformationId,
|
RequestForInformationItemId: requestForInformationObjectionReq.RequestForInformationItemId,
|
||||||
DocumentName: requestForInformationObjectionReq.DocumentName,
|
DocumentName: requestForInformationObjectionReq.DocumentName,
|
||||||
MainReason: requestForInformationObjectionReq.MainReason,
|
MainReason: requestForInformationObjectionReq.MainReason,
|
||||||
SecondaryReason: requestForInformationObjectionReq.SecondaryReason,
|
SecondaryReason: requestForInformationObjectionReq.SecondaryReason,
|
||||||
CreatedById: requestForInformationObjectionReq.CreatedById,
|
CreatedById: requestForInformationObjectionReq.CreatedById,
|
||||||
StatusId: requestForInformationObjectionReq.StatusId,
|
StatusId: requestForInformationObjectionReq.StatusId,
|
||||||
IsActive: requestForInformationObjectionReq.IsActive,
|
IsActive: requestForInformationObjectionReq.IsActive,
|
||||||
CreatedAt: requestForInformationObjectionReq.CreatedAt,
|
CreatedAt: requestForInformationObjectionReq.CreatedAt,
|
||||||
UpdatedAt: requestForInformationObjectionReq.UpdatedAt,
|
UpdatedAt: requestForInformationObjectionReq.UpdatedAt,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return requestForInformationObjectionRes
|
return requestForInformationObjectionRes
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue