Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public interface BaseMapper<E,V> {
E toEntity(V dto);
V toDto(E entity);
List<E> toEntitys(List<V> dtos);
List<V> toDtos(List<E> entitys);
}