zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.jeecg.modules.doc.mapper.RecoveryFileMapper">
 
    <select id="selectRecoveryFileList" resultType="org.jeecg.modules.doc.vo.RecoveryFileListVo">
        SELECT * FROM recovery_file a
                          LEFT JOIN doc_file_path b ON a.path_id = b.path_id
                          left join doc_file c on c.file_id = b.file_id
 
    </select>
</mapper>