xiangpei
9 天以前 c13e4a322e3d58183882478703fe919a88759cb4
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
package cn.lili.modules.lmk.mapper;
 
import cn.lili.modules.lmk.domain.entity.LmkFile;
import cn.lili.modules.lmk.domain.vo.LmkFileVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 文件信息 Mapper 接口
 *
 * @author xp
 * @since 2025-05-19
 */
@Mapper
public interface LmkFileMapper extends BaseMapper<LmkFile> {
 
    /**
     * 查找文件信息
     *
     * @param fileKey
     * @return
     */
    LmkFile getByFileKey(String fileKey);
 
 
}