xiangpei
2024-09-11 66232862129c84f2c98fabdc73a59f4fe0e0a360
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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<SysOss, SysOssVo> {
 
    List<Long> getWillDeleted(@Param("maxTime") LocalDateTime maxTime);
}