package com.qianwen.smartman.modules.coproduction.convert; import java.util.List; import org.mapstruct.Mapper; import org.mapstruct.Mappings; import org.mapstruct.factory.Mappers; import com.qianwen.smartman.modules.coproduction.dto.OrderProcessReportWorkDTO; import com.qianwen.smartman.modules.coproduction.dto.ReportParallelProcessDTO; @Mapper public interface ReportConvert { public static final ReportConvert INSTANCE = (ReportConvert) Mappers.getMapper(ReportConvert.class); @Mappings({}) List convert(List list); @Mappings({}) List convertParallel(List list); @Mappings({}) OrderProcessReportWorkDTO convert(ReportParallelProcessDTO reportParallelProcessDTO); @Mappings({}) ReportParallelProcessDTO convert(OrderProcessReportWorkDTO orderProcessReportWorkDTO); }