package org.dromara.system.mapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; import org.dromara.system.domain.SysOss; import org.dromara.system.domain.vo.SysOssVo; import java.time.LocalDateTime; import java.util.List; /** * 文件上传 数据层 * * @author Lion Li */ @Mapper public interface SysOssMapper extends BaseMapperPlus { List getWillDeleted(@Param("maxTime") LocalDateTime maxTime); }