com.aizuda.snailjob.server.web.service.convert.JobNotifyConfigResponseVOConverter Maven / Gradle / Ivy
package com.aizuda.snailjob.server.web.service.convert;
import com.aizuda.snailjob.server.web.model.response.JobNotifyConfigResponseVO;
import com.aizuda.snailjob.template.datasource.persistence.dataobject.JobNotifyConfigResponseDO;
import com.aizuda.snailjob.template.datasource.persistence.po.JobNotifyConfig;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
import java.util.List;
/**
* @author: opensnail
* @date : 2022-03-03 11:20
*/
@Mapper
public interface JobNotifyConfigResponseVOConverter {
JobNotifyConfigResponseVOConverter INSTANCE = Mappers.getMapper(JobNotifyConfigResponseVOConverter.class);
JobNotifyConfigResponseVO convert(JobNotifyConfig jobNotifyConfig);
List convertList(List jobNotifyConfigs);
}