文件模块初步完成

This commit is contained in:
2025-05-06 19:15:01 +08:00
parent 2eb5ee1207
commit e1458e937b
21 changed files with 763 additions and 24 deletions

View File

@ -0,0 +1,18 @@
package com.greenorange.promotion.mapper;
import com.greenorange.promotion.model.entity.FileInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author 35880
* @description 针对表【file_info(文件上传列表)】的数据库操作Mapper
* @createDate 2025-05-06 17:02:05
* @Entity com.greenorange.promotion.model.entity.FileInfo
*/
public interface FileInfoMapper extends BaseMapper<FileInfo> {
}