package org.dromara.system.convert; import org.dromara.common.oss.properties.OssProperties; import org.dromara.system.domain.SysOssConfig; import org.mapstruct.Mapper; import org.mapstruct.factory.Mappers; import java.util.List; @Mapper public interface SysOssConfigClassConvert { SysOssConfigClassConvert INSTANCE = Mappers.getMapper(SysOssConfigClassConvert.class); OssProperties sysOssConfigToossProperties(SysOssConfig sysOssConfig); }