sgj
7 天以前 2fcd208b2dd3dcd78836daa1bfce016a62d04f8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.fzzy.igds.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fzzy.igds.domain.FileInfo;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/12/05 15:48
 */
@Mapper
public interface FileMapper extends BaseMapper<FileInfo> {
}