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);
|
|
|
}
|