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