Skip to content

Instantly share code, notes, and snippets.

@Tonel
Last active March 10, 2021 20:10
Show Gist options
  • Save Tonel/b01b4df364a59bda54675ad24d962523 to your computer and use it in GitHub Desktop.
Save Tonel/b01b4df364a59bda54675ad24d962523 to your computer and use it in GitHub Desktop.
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE)
interface AuthorMapper {
fun authorToAuthorDto(
author : Author
) : AuthorDto
fun authorsToAuthorDtos(
authors : List<Author>
) : List<AuthorDto>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment