ProductItemMapstruct.java 463 B

12345678910111213141516
  1. package com.poyee.mapstruct;
  2. import com.poyee.domain.ProductItem;
  3. import com.poyee.res.OrderServiceProductItemSearchRes;
  4. import com.poyee.res.ProductItemListRes;
  5. import org.mapstruct.Mapper;
  6. import java.util.List;
  7. @Mapper(componentModel = "spring")
  8. public interface ProductItemMapstruct {
  9. ProductItemListRes productItem2ProductItemListRes(ProductItem productItem);
  10. List<OrderServiceProductItemSearchRes> convertRes(List<ProductItem> productItems);
  11. }