Blame view

src/main/java/com/pashanhoo/file/mapper/DgFileMapper.java 740 Bytes
1 2 3 4
package com.pashanhoo.file.mapper;


import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5
import com.pashanhoo.catalog.entity.vo.DgArchivesCatalogWithFileVO;
6
import com.pashanhoo.file.entity.DgFileDO;
7 8 9 10 11
import com.pashanhoo.file.entity.vo.DgFileListVO;
import com.pashanhoo.file.entity.vo.DgFileSearchRequest;
import org.apache.ibatis.annotations.Param;

import java.util.List;
12 13 14 15 16 17 18 19 20 21 22

/**
 * <p>
 * 档案文件信息 Mapper 接口
 * </p>
 *
 * @author
 * @since 2021-11-05
 */
public interface DgFileMapper extends BaseMapper<DgFileDO> {

23 24 25 26 27
    /**
     * 查询附件以及名称和排序
     * @param request
     * @return
     */
28
    List<DgArchivesCatalogWithFileVO> selectCatalogWithFile(@Param("request") DgFileSearchRequest request);
29
}