Loki
2 years ago
27 changed files with 55 additions and 79 deletions
@ -1,43 +0,0 @@
|
||||
/** |
||||
* Copyright (C) 2018-2022 |
||||
* All rights reserved, Designed By www.yixiang.co |
||||
|
||||
*/ |
||||
package co.yixiang.mapper; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @author Zheng Jie |
||||
* @date 2018-11-23 |
||||
*/ |
||||
public interface EntityMapper<D, E> { |
||||
|
||||
/** |
||||
* DTO转Entity |
||||
* @param dto |
||||
* @return |
||||
*/ |
||||
E toEntity(D dto); |
||||
|
||||
/** |
||||
* Entity转DTO |
||||
* @param entity |
||||
* @return |
||||
*/ |
||||
D toDto(E entity); |
||||
|
||||
/** |
||||
* DTO集合转Entity集合 |
||||
* @param dtoList |
||||
* @return |
||||
*/ |
||||
List <E> toEntity(List<D> dtoList); |
||||
|
||||
/** |
||||
* Entity集合转DTO集合 |
||||
* @param entityList |
||||
* @return |
||||
*/ |
||||
List <D> toDto(List<E> entityList); |
||||
} |
Loading…
Reference in new issue