yangys
2025-09-29 4c7296d45efe849dc70a3b2e2240c905481a91c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package org.springblade.mdm.machinefile.mapper;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springblade.core.mp.mapper.BladeMapper;
import org.springblade.mdm.machinefile.entity.MachineFile;
import org.springblade.mdm.machinefile.vo.MachineFileQueryVO;
import org.springblade.mdm.machinefile.vo.MachineAcceptedFileHandleQueryVO;
import org.springblade.mdm.machinefile.vo.MachineBackFileQueryVO;
import org.springblade.mdm.machinefile.vo.MachineAcceptedFileVO;
import org.springblade.mdm.statreport.vo.MachineFileExceptionQueryVO;
 
public interface MachineFileMapper extends BladeMapper<MachineFile> {
    /**
     * 工控网首页机床文件查询
     * @param page
     * @param queryVO
     * @return
     */
    IPage<MachineFile> pageQuery(IPage<MachineFile> page, @Param("query") MachineFileQueryVO queryVO);
    /**
     * 待接收机床文件查询
     * @param page 分页参数
     * @param queryVO 查询对象
     * @return 机床文件实体
     */
    IPage<MachineFile> filePageForAccept(IPage<MachineAcceptedFileVO> page, @Param("query")MachineBackFileQueryVO queryVO);
 
    /**
     * 异常文件列表查询
     * @param page
     * @param query
     * @return
     */
    IPage<MachineFile> exceptionFilePageQuery(IPage<Object> page,@Param("query") MachineFileExceptionQueryVO query);
 
    /**
     * 删除无用文件几里路
     */
    void deleteNotUseRecords();
}