| 123456789101112131415161718192021222324252627 |
- package cn.hobbystocks.auc.convert;
- import cn.hobbystocks.auc.domain.Lot;
- import cn.hobbystocks.auc.response.LotFansResponse;
- import org.mapstruct.Mapper;
- import org.mapstruct.factory.Mappers;
- /**
- * 拍品转换器
- *
- * @author: gengjintao
- * @date: 2026/01/20
- */
- @Mapper
- public interface LotConvert {
- LotConvert INSTANCE = Mappers.getMapper(LotConvert.class);
- LotFansResponse toLotFansResponse(Lot po);
- }
|