| 1234567891011121314151617181920212223242526 |
- package com.zhixinghe1.ots.common.converter.mapstruct;
- /**
- * 对象转换工具
- *
- * @param <Entity>
- * @param <Dto>
- */
- public interface BaseEntityConverter<Entity, Dto> {
- /**
- * 实体对象转换为DTO对象
- *
- * @param entity
- * @return
- */
- Dto convert2Dto(Entity entity);
- /**
- * DTO对象转换为实体对象
- *
- * @param dto
- * @return
- */
- Entity convert2Entity(Dto dto);
- }
|